Skip to content

ManagerAccessMask

Access rights for a ScManager handle.

A mask is built from symbols, and every API taking one also accepts a bare symbol or an iterable of symbols in its place, so an explicit ManagerAccessMask is only needed to combine or inspect rights.

winscm.ManagerAccessMask is a security.windows.AccessMask, so it can be used wherever a Windows access mask is expected.

Example

let a = ManagerAccessMask :SC_MANAGER_CONNECT: :SC_MANAGER_LOCK:
let b = ManagerAccessMask [:SC_MANAGER_CONNECT:, :SC_MANAGER_LOCK:]

Inherits from: security.windows.AccessMask

Implements: std.FlagSet[ManagerAccessRight]

Fields

int @ Int

The complete native mask as an Int, including bits this type does not name.

Methods

from_int value -> ManagerAccessMask

Builds a mask from a native integer, preserving every bit including ones this type does not name.

Parameters

NameTypeDescription
value Int Native Windows access mask.