pub struct ERROR(/* private fields */);
kernel
only.Expand description
A native
system error code
(u32
), commonly retrieved by
GetLastError
function.
The Result
alias for this type is
SysResult
.
Implements the standard Error
trait.
Implements the Debug
and
Display
traits to show the error code along with
the error description, taken from
SystemError
trait. For example, the
code below:
use winsafe::{self as w, prelude::*, co};
println!("{}", co::ERROR::OUT_OF_PAPER);
Will print:
[0x001c 28] The printer is out of paper.
The numbers inside the brackets are the system error code, in hexadecimal and decimal formats for convenience.
Implementations§
Source§impl ERROR
impl ERROR
Sourcepub const unsafe fn as_mut(&mut self) -> &mut u32
pub const unsafe fn as_mut(&mut self) -> &mut u32
Returns a mutable reference to the underlying raw value.
§Safety
Be sure the integer being set is meaningful for the actual type.
Sourcepub const unsafe fn from_raw(v: u32) -> Self
pub const unsafe fn from_raw(v: u32) -> Self
Constructs a new object by wrapping the given integer value.
§Safety
Be sure the given value is meaningful for the actual type.
Sourcepub const fn raw(&self) -> u32
pub const fn raw(&self) -> u32
Returns the primitive integer underlying value.
This method is similar to Into
, but it
is const
, therefore it can be used in
const contexts.
Source§impl ERROR
impl ERROR
pub const INVALID_FUNCTION: Self
pub const FILE_NOT_FOUND: Self
pub const PATH_NOT_FOUND: Self
pub const TOO_MANY_OPEN_FILES: Self
pub const ACCESS_DENIED: Self
pub const INVALID_HANDLE: Self
pub const ARENA_TRASHED: Self
pub const NOT_ENOUGH_MEMORY: Self
pub const INVALID_BLOCK: Self
pub const BAD_ENVIRONMENT: Self
pub const BAD_FORMAT: Self
pub const INVALID_ACCESS: Self
pub const INVALID_DATA: Self
pub const OUTOFMEMORY: Self
pub const INVALID_DRIVE: Self
pub const CURRENT_DIRECTORY: Self
pub const NOT_SAME_DEVICE: Self
pub const NO_MORE_FILES: Self
pub const WRITE_PROTECT: Self
pub const BAD_UNIT: Self
pub const NOT_READY: Self
pub const BAD_COMMAND: Self
pub const CRC: Self
pub const BAD_LENGTH: Self
pub const SEEK: Self
pub const NOT_DOS_DISK: Self
pub const SECTOR_NOT_FOUND: Self
pub const OUT_OF_PAPER: Self
pub const WRITE_FAULT: Self
pub const READ_FAULT: Self
pub const GEN_FAILURE: Self
pub const SHARING_VIOLATION: Self
pub const LOCK_VIOLATION: Self
pub const WRONG_DISK: Self
pub const SHARING_BUFFER_EXCEEDED: Self
pub const HANDLE_EOF: Self
pub const HANDLE_DISK_FULL: Self
pub const NOT_SUPPORTED: Self
pub const REM_NOT_LIST: Self
pub const DUP_NAME: Self
pub const BAD_NETPATH: Self
pub const NETWORK_BUSY: Self
pub const DEV_NOT_EXIST: Self
pub const TOO_MANY_CMDS: Self
pub const ADAP_HDW_ERR: Self
pub const BAD_NET_RESP: Self
pub const UNEXP_NET_ERR: Self
pub const BAD_REM_ADAP: Self
pub const PRINTQ_FULL: Self
pub const NO_SPOOL_SPACE: Self
pub const PRINT_CANCELLED: Self
pub const NETNAME_DELETED: Self
pub const NETWORK_ACCESS_DENIED: Self
pub const BAD_DEV_TYPE: Self
pub const BAD_NET_NAME: Self
pub const TOO_MANY_NAMES: Self
pub const TOO_MANY_SESS: Self
pub const SHARING_PAUSED: Self
pub const REQ_NOT_ACCEP: Self
pub const REDIR_PAUSED: Self
pub const FILE_EXISTS: Self
pub const CANNOT_MAKE: Self
pub const FAIL_I24: Self
pub const OUT_OF_STRUCTURES: Self
pub const ALREADY_ASSIGNED: Self
pub const INVALID_PASSWORD: Self
pub const INVALID_PARAMETER: Self
pub const NET_WRITE_FAULT: Self
pub const NO_PROC_SLOTS: Self
pub const TOO_MANY_SEMAPHORES: Self
pub const EXCL_SEM_ALREADY_OWNED: Self
pub const SEM_IS_SET: Self
pub const TOO_MANY_SEM_REQUESTS: Self
pub const INVALID_AT_INTERRUPT_TIME: Self
pub const SEM_OWNER_DIED: Self
pub const SEM_USER_LIMIT: Self
pub const DISK_CHANGE: Self
pub const DRIVE_LOCKED: Self
pub const BROKEN_PIPE: Self
pub const OPEN_FAILED: Self
pub const BUFFER_OVERFLOW: Self
pub const DISK_FULL: Self
pub const NO_MORE_SEARCH_HANDLES: Self
pub const INVALID_TARGET_HANDLE: Self
pub const INVALID_CATEGORY: Self
pub const INVALID_VERIFY_SWITCH: Self
pub const BAD_DRIVER_LEVEL: Self
pub const CALL_NOT_IMPLEMENTED: Self
pub const SEM_TIMEOUT: Self
pub const INSUFFICIENT_BUFFER: Self
pub const INVALID_NAME: Self
pub const INVALID_LEVEL: Self
pub const NO_VOLUME_LABEL: Self
pub const MOD_NOT_FOUND: Self
pub const PROC_NOT_FOUND: Self
pub const WAIT_NO_CHILDREN: Self
pub const CHILD_NOT_COMPLETE: Self
pub const DIRECT_ACCESS_HANDLE: Self
pub const NEGATIVE_SEEK: Self
pub const SEEK_ON_DEVICE: Self
pub const IS_JOIN_TARGET: Self
pub const IS_JOINED: Self
pub const IS_SUBSTED: Self
pub const NOT_JOINED: Self
pub const NOT_SUBSTED: Self
pub const JOIN_TO_JOIN: Self
pub const SUBST_TO_SUBST: Self
pub const JOIN_TO_SUBST: Self
pub const SUBST_TO_JOIN: Self
pub const BUSY_DRIVE: Self
pub const SAME_DRIVE: Self
pub const DIR_NOT_ROOT: Self
pub const DIR_NOT_EMPTY: Self
pub const IS_SUBST_PATH: Self
pub const IS_JOIN_PATH: Self
pub const PATH_BUSY: Self
pub const IS_SUBST_TARGET: Self
pub const SYSTEM_TRACE: Self
pub const INVALID_EVENT_COUNT: Self
pub const TOO_MANY_MUXWAITERS: Self
pub const INVALID_LIST_FORMAT: Self
pub const LABEL_TOO_LONG: Self
pub const TOO_MANY_TCBS: Self
pub const SIGNAL_REFUSED: Self
pub const DISCARDED: Self
pub const NOT_LOCKED: Self
pub const BAD_THREADID_ADDR: Self
pub const BAD_ARGUMENTS: Self
pub const BAD_PATHNAME: Self
pub const SIGNAL_PENDING: Self
pub const MAX_THRDS_REACHED: Self
pub const LOCK_FAILED: Self
pub const BUSY: Self
pub const DEVICE_SUPPORT_IN_PROGRESS: Self
pub const CANCEL_VIOLATION: Self
pub const ATOMIC_LOCKS_NOT_SUPPORTED: Self
pub const INVALID_SEGMENT_NUMBER: Self
pub const INVALID_ORDINAL: Self
pub const ALREADY_EXISTS: Self
pub const INVALID_FLAG_NUMBER: Self
pub const SEM_NOT_FOUND: Self
pub const INVALID_STARTING_CODESEG: Self
pub const INVALID_STACKSEG: Self
pub const INVALID_MODULETYPE: Self
pub const INVALID_EXE_SIGNATURE: Self
pub const EXE_MARKED_INVALID: Self
pub const BAD_EXE_FORMAT: Self
pub const ITERATED_DATA_EXCEEDS_64k: Self
pub const INVALID_MINALLOCSIZE: Self
pub const DYNLINK_FROM_INVALID_RING: Self
pub const IOPL_NOT_ENABLED: Self
pub const INVALID_SEGDPL: Self
pub const AUTODATASEG_EXCEEDS_64k: Self
pub const RING2SEG_MUST_BE_MOVABLE: Self
pub const RELOC_CHAIN_XEEDS_SEGLIM: Self
pub const INFLOOP_IN_RELOC_CHAIN: Self
pub const ENVVAR_NOT_FOUND: Self
pub const NO_SIGNAL_SENT: Self
pub const FILENAME_EXCED_RANGE: Self
pub const RING2_STACK_IN_USE: Self
pub const META_EXPANSION_TOO_LONG: Self
pub const INVALID_SIGNAL_NUMBER: Self
pub const THREAD_1_INACTIVE: Self
pub const LOCKED: Self
pub const TOO_MANY_MODULES: Self
pub const NESTING_NOT_ALLOWED: Self
pub const EXE_MACHINE_TYPE_MISMATCH: Self
pub const EXE_CANNOT_MODIFY_SIGNED_BINARY: Self
pub const EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY: Self
pub const FILE_CHECKED_OUT: Self
pub const CHECKOUT_REQUIRED: Self
pub const BAD_FILE_TYPE: Self
pub const FILE_TOO_LARGE: Self
pub const FORMS_AUTH_REQUIRED: Self
pub const VIRUS_INFECTED: Self
pub const VIRUS_DELETED: Self
pub const PIPE_LOCAL: Self
pub const BAD_PIPE: Self
pub const PIPE_BUSY: Self
pub const NO_DATA: Self
pub const PIPE_NOT_CONNECTED: Self
pub const MORE_DATA: Self
pub const NO_WORK_DONE: Self
pub const VC_DISCONNECTED: Self
pub const INVALID_EA_NAME: Self
pub const EA_LIST_INCONSISTENT: Self
pub const NO_MORE_ITEMS: Self
pub const CANNOT_COPY: Self
pub const DIRECTORY: Self
pub const EAS_DIDNT_FIT: Self
pub const EA_FILE_CORRUPT: Self
pub const EA_TABLE_FULL: Self
pub const INVALID_EA_HANDLE: Self
pub const EAS_NOT_SUPPORTED: Self
pub const NOT_OWNER: Self
pub const TOO_MANY_POSTS: Self
pub const PARTIAL_COPY: Self
pub const OPLOCK_NOT_GRANTED: Self
pub const INVALID_OPLOCK_PROTOCOL: Self
pub const DISK_TOO_FRAGMENTED: Self
pub const DELETE_PENDING: Self
pub const INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING: Self
pub const SHORT_NAMES_NOT_ENABLED_ON_VOLUME: Self
pub const SECURITY_STREAM_IS_INCONSISTENT: Self
pub const INVALID_LOCK_RANGE: Self
pub const IMAGE_SUBSYSTEM_NOT_PRESENT: Self
pub const NOTIFICATION_GUID_ALREADY_DEFINED: Self
pub const INVALID_EXCEPTION_HANDLER: Self
pub const DUPLICATE_PRIVILEGES: Self
pub const NO_RANGES_PROCESSED: Self
pub const NOT_ALLOWED_ON_SYSTEM_FILE: Self
pub const DISK_RESOURCES_EXHAUSTED: Self
pub const INVALID_TOKEN: Self
pub const DEVICE_FEATURE_NOT_SUPPORTED: Self
pub const MR_MID_NOT_FOUND: Self
pub const SCOPE_NOT_FOUND: Self
pub const UNDEFINED_SCOPE: Self
pub const INVALID_CAP: Self
pub const DEVICE_UNREACHABLE: Self
pub const DEVICE_NO_RESOURCES: Self
pub const DATA_CHECKSUM_ERROR: Self
pub const INTERMIXED_KERNEL_EA_OPERATION: Self
pub const FILE_LEVEL_TRIM_NOT_SUPPORTED: Self
pub const OFFSET_ALIGNMENT_VIOLATION: Self
pub const INVALID_FIELD_IN_PARAMETER_LIST: Self
pub const OPERATION_IN_PROGRESS: Self
pub const BAD_DEVICE_PATH: Self
pub const TOO_MANY_DESCRIPTORS: Self
pub const SCRUB_DATA_DISABLED: Self
pub const NOT_REDUNDANT_STORAGE: Self
pub const RESIDENT_FILE_NOT_SUPPORTED: Self
pub const COMPRESSED_FILE_NOT_SUPPORTED: Self
pub const DIRECTORY_NOT_SUPPORTED: Self
pub const NOT_READ_FROM_COPY: Self
pub const FT_WRITE_FAILURE: Self
pub const FT_DI_SCAN_REQUIRED: Self
pub const INVALID_KERNEL_INFO_VERSION: Self
pub const INVALID_PEP_INFO_VERSION: Self
pub const OBJECT_NOT_EXTERNALLY_BACKED: Self
pub const EXTERNAL_BACKING_PROVIDER_UNKNOWN: Self
pub const COMPRESSION_NOT_BENEFICIAL: Self
pub const STORAGE_TOPOLOGY_ID_MISMATCH: Self
pub const BLOCKED_BY_PARENTAL_CONTROLS: Self
pub const BLOCK_TOO_MANY_REFERENCES: Self
pub const MARKED_TO_DISALLOW_WRITES: Self
pub const ENCLAVE_FAILURE: Self
pub const FAIL_NOACTION_REBOOT: Self
pub const FAIL_SHUTDOWN: Self
pub const FAIL_RESTART: Self
pub const MAX_SESSIONS_REACHED: Self
pub const NETWORK_ACCESS_DENIED_EDP: Self
pub const DEVICE_HINT_NAME_BUFFER_TOO_SMALL: Self
pub const EDP_POLICY_DENIES_OPERATION: Self
pub const EDP_DPL_POLICY_CANT_BE_SATISFIED: Self
pub const CLOUD_FILE_SYNC_ROOT_METADATA_CORRUPT: Self
pub const DEVICE_IN_MAINTENANCE: Self
pub const NOT_SUPPORTED_ON_DAX: Self
pub const DAX_MAPPING_EXISTS: Self
pub const CLOUD_FILE_PROVIDER_NOT_RUNNING: Self
pub const CLOUD_FILE_METADATA_CORRUPT: Self
pub const CLOUD_FILE_METADATA_TOO_LARGE: Self
pub const CLOUD_FILE_PROPERTY_BLOB_TOO_LARGE: Self
pub const CLOUD_FILE_PROPERTY_BLOB_CHECKSUM_MISMATCH: Self
pub const CHILD_PROCESS_BLOCKED: Self
pub const STORAGE_LOST_DATA_PERSISTENCE: Self
pub const FILE_SYSTEM_VIRTUALIZATION_UNAVAILABLE: Self
pub const FILE_SYSTEM_VIRTUALIZATION_METADATA_CORRUPT: Self
pub const FILE_SYSTEM_VIRTUALIZATION_BUSY: Self
pub const FILE_SYSTEM_VIRTUALIZATION_PROVIDER_UNKNOWN: Self
pub const GDI_HANDLE_LEAK: Self
pub const CLOUD_FILE_TOO_MANY_PROPERTY_BLOBS: Self
pub const CLOUD_FILE_PROPERTY_VERSION_NOT_SUPPORTED: Self
pub const NOT_A_CLOUD_FILE: Self
pub const CLOUD_FILE_NOT_IN_SYNC: Self
pub const CLOUD_FILE_ALREADY_CONNECTED: Self
pub const CLOUD_FILE_NOT_SUPPORTED: Self
pub const CLOUD_FILE_INVALID_REQUEST: Self
pub const CLOUD_FILE_READ_ONLY_VOLUME: Self
pub const CLOUD_FILE_CONNECTED_PROVIDER_ONLY: Self
pub const CLOUD_FILE_VALIDATION_FAILED: Self
pub const SMB1_NOT_AVAILABLE: Self
pub const FILE_SYSTEM_VIRTUALIZATION_INVALID_OPERATION: Self
pub const CLOUD_FILE_AUTHENTICATION_FAILED: Self
pub const CLOUD_FILE_INSUFFICIENT_RESOURCES: Self
pub const CLOUD_FILE_NETWORK_UNAVAILABLE: Self
pub const CLOUD_FILE_UNSUCCESSFUL: Self
pub const CLOUD_FILE_NOT_UNDER_SYNC_ROOT: Self
pub const CLOUD_FILE_IN_USE: Self
pub const CLOUD_FILE_PINNED: Self
pub const CLOUD_FILE_REQUEST_ABORTED: Self
pub const CLOUD_FILE_PROPERTY_CORRUPT: Self
pub const CLOUD_FILE_ACCESS_DENIED: Self
pub const CLOUD_FILE_INCOMPATIBLE_HARDLINKS: Self
pub const CLOUD_FILE_PROPERTY_LOCK_CONFLICT: Self
pub const CLOUD_FILE_REQUEST_CANCELED: Self
pub const EXTERNAL_SYSKEY_NOT_SUPPORTED: Self
pub const THREAD_MODE_ALREADY_BACKGROUND: Self
pub const THREAD_MODE_NOT_BACKGROUND: Self
pub const PROCESS_MODE_ALREADY_BACKGROUND: Self
pub const PROCESS_MODE_NOT_BACKGROUND: Self
pub const CLOUD_FILE_PROVIDER_TERMINATED: Self
pub const NOT_A_CLOUD_SYNC_ROOT: Self
pub const FILE_PROTECTED_UNDER_DPL: Self
pub const VOLUME_NOT_CLUSTER_ALIGNED: Self
pub const NO_PHYSICALLY_ALIGNED_FREE_SPACE_FOUND: Self
pub const APPX_FILE_NOT_ENCRYPTED: Self
pub const RWRAW_ENCRYPTED_FILE_NOT_ENCRYPTED: Self
pub const RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILEOFFSET: Self
pub const RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILERANGE: Self
pub const RWRAW_ENCRYPTED_INVALID_EDATAINFO_PARAMETER: Self
pub const LINUX_SUBSYSTEM_NOT_PRESENT: Self
pub const FT_READ_FAILURE: Self
pub const STORAGE_RESERVE_ID_INVALID: Self
pub const STORAGE_RESERVE_DOES_NOT_EXIST: Self
pub const STORAGE_RESERVE_ALREADY_EXISTS: Self
pub const STORAGE_RESERVE_NOT_EMPTY: Self
pub const NOT_A_DAX_VOLUME: Self
pub const NOT_DAX_MAPPABLE: Self
pub const TIME_SENSITIVE_THREAD: Self
pub const DPL_NOT_SUPPORTED_FOR_USER: Self
pub const CASE_DIFFERING_NAMES_IN_DIR: Self
pub const FILE_NOT_SUPPORTED: Self
pub const CLOUD_FILE_REQUEST_TIMEOUT: Self
pub const NO_TASK_QUEUE: Self
pub const SRC_SRV_DLL_LOAD_FAILED: Self
pub const NOT_SUPPORTED_WITH_BTT: Self
pub const ENCRYPTION_DISABLED: Self
pub const ENCRYPTING_METADATA_DISALLOWED: Self
pub const CANT_CLEAR_ENCRYPTION_FLAG: Self
pub const NO_SUCH_DEVICE: Self
pub const CAPAUTHZ_NOT_DEVUNLOCKED: Self
pub const CAPAUTHZ_CHANGE_TYPE: Self
pub const CAPAUTHZ_NOT_PROVISIONED: Self
pub const CAPAUTHZ_NOT_AUTHORIZED: Self
pub const CAPAUTHZ_NO_POLICY: Self
pub const CAPAUTHZ_DB_CORRUPTED: Self
pub const CAPAUTHZ_SCCD_INVALID_CATALOG: Self
pub const CAPAUTHZ_SCCD_NO_AUTH_ENTITY: Self
pub const CAPAUTHZ_SCCD_PARSE_ERROR: Self
pub const CAPAUTHZ_SCCD_DEV_MODE_REQUIRED: Self
pub const CAPAUTHZ_SCCD_NO_CAPABILITY_MATCH: Self
pub const PNP_QUERY_REMOVE_DEVICE_TIMEOUT: Self
pub const PNP_QUERY_REMOVE_RELATED_DEVICE_TIMEOUT: Self
pub const PNP_QUERY_REMOVE_UNRELATED_DEVICE_TIMEOUT: Self
pub const DEVICE_HARDWARE_ERROR: Self
pub const INVALID_ADDRESS: Self
pub const VRF_CFG_ENABLED: Self
pub const PARTITION_TERMINATING: Self
pub const USER_PROFILE_LOAD: Self
pub const ARITHMETIC_OVERFLOW: Self
pub const PIPE_CONNECTED: Self
pub const PIPE_LISTENING: Self
pub const VERIFIER_STOP: Self
pub const ABIOS_ERROR: Self
pub const WX86_WARNING: Self
pub const WX86_ERROR: Self
pub const TIMER_NOT_CANCELED: Self
pub const UNWIND: Self
pub const BAD_STACK: Self
pub const INVALID_UNWIND_TARGET: Self
pub const INVALID_PORT_ATTRIBUTES: Self
pub const PORT_MESSAGE_TOO_LONG: Self
pub const INVALID_QUOTA_LOWER: Self
pub const DEVICE_ALREADY_ATTACHED: Self
pub const INSTRUCTION_MISALIGNMENT: Self
pub const PROFILING_NOT_STARTED: Self
pub const PROFILING_NOT_STOPPED: Self
pub const COULD_NOT_INTERPRET: Self
pub const PROFILING_AT_LIMIT: Self
pub const CANT_WAIT: Self
pub const CANT_TERMINATE_SELF: Self
pub const UNEXPECTED_MM_CREATE_ERR: Self
pub const UNEXPECTED_MM_MAP_ERROR: Self
pub const UNEXPECTED_MM_EXTEND_ERR: Self
pub const BAD_FUNCTION_TABLE: Self
pub const NO_GUID_TRANSLATION: Self
pub const INVALID_LDT_SIZE: Self
pub const INVALID_LDT_OFFSET: Self
pub const INVALID_LDT_DESCRIPTOR: Self
pub const TOO_MANY_THREADS: Self
pub const THREAD_NOT_IN_PROCESS: Self
pub const PAGEFILE_QUOTA_EXCEEDED: Self
pub const LOGON_SERVER_CONFLICT: Self
pub const SYNCHRONIZATION_REQUIRED: Self
pub const NET_OPEN_FAILED: Self
pub const IO_PRIVILEGE_FAILED: Self
pub const CONTROL_C_EXIT: Self
pub const MISSING_SYSTEMFILE: Self
pub const UNHANDLED_EXCEPTION: Self
pub const APP_INIT_FAILURE: Self
pub const PAGEFILE_CREATE_FAILED: Self
pub const INVALID_IMAGE_HASH: Self
pub const NO_PAGEFILE: Self
pub const ILLEGAL_FLOAT_CONTEXT: Self
pub const NO_EVENT_PAIR: Self
pub const DOMAIN_CTRLR_CONFIG_ERROR: Self
pub const ILLEGAL_CHARACTER: Self
pub const UNDEFINED_CHARACTER: Self
pub const FLOPPY_VOLUME: Self
pub const BIOS_FAILED_TO_CONNECT_INTERRUPT: Self
pub const BACKUP_CONTROLLER: Self
pub const MUTANT_LIMIT_EXCEEDED: Self
pub const FS_DRIVER_REQUIRED: Self
pub const CANNOT_LOAD_REGISTRY_FILE: Self
pub const DEBUG_ATTACH_FAILED: Self
pub const SYSTEM_PROCESS_TERMINATED: Self
pub const DATA_NOT_ACCEPTED: Self
pub const VDM_HARD_ERROR: Self
pub const DRIVER_CANCEL_TIMEOUT: Self
pub const REPLY_MESSAGE_MISMATCH: Self
pub const LOST_WRITEBEHIND_DATA: Self
pub const CLIENT_SERVER_PARAMETERS_INVALID: Self
pub const NOT_TINY_STREAM: Self
pub const STACK_OVERFLOW_READ: Self
pub const CONVERT_TO_LARGE: Self
pub const FOUND_OUT_OF_SCOPE: Self
pub const ALLOCATE_BUCKET: Self
pub const MARSHALL_OVERFLOW: Self
pub const INVALID_VARIANT: Self
pub const BAD_COMPRESSION_BUFFER: Self
pub const AUDIT_FAILED: Self
pub const TIMER_RESOLUTION_NOT_SET: Self
pub const INSUFFICIENT_LOGON_INFO: Self
pub const BAD_DLL_ENTRYPOINT: Self
pub const BAD_SERVICE_ENTRYPOINT: Self
pub const IP_ADDRESS_CONFLICT1: Self
pub const IP_ADDRESS_CONFLICT2: Self
pub const REGISTRY_QUOTA_LIMIT: Self
pub const NO_CALLBACK_ACTIVE: Self
pub const PWD_TOO_SHORT: Self
pub const PWD_TOO_RECENT: Self
pub const PWD_HISTORY_CONFLICT: Self
pub const UNSUPPORTED_COMPRESSION: Self
pub const INVALID_HW_PROFILE: Self
pub const INVALID_PLUGPLAY_DEVICE_PATH: Self
pub const QUOTA_LIST_INCONSISTENT: Self
pub const EVALUATION_EXPIRATION: Self
pub const ILLEGAL_DLL_RELOCATION: Self
pub const DLL_INIT_FAILED_LOGOFF: Self
pub const VALIDATE_CONTINUE: Self
pub const NO_MORE_MATCHES: Self
pub const RANGE_LIST_CONFLICT: Self
pub const SERVER_SID_MISMATCH: Self
pub const CANT_ENABLE_DENY_ONLY: Self
pub const FLOAT_MULTIPLE_FAULTS: Self
pub const FLOAT_MULTIPLE_TRAPS: Self
pub const NOINTERFACE: Self
pub const DRIVER_FAILED_SLEEP: Self
pub const CORRUPT_SYSTEM_FILE: Self
pub const COMMITMENT_MINIMUM: Self
pub const PNP_RESTART_ENUMERATION: Self
pub const SYSTEM_IMAGE_BAD_SIGNATURE: Self
pub const PNP_REBOOT_REQUIRED: Self
pub const INSUFFICIENT_POWER: Self
pub const MULTIPLE_FAULT_VIOLATION: Self
pub const SYSTEM_SHUTDOWN: Self
pub const PORT_NOT_SET: Self
pub const DS_VERSION_CHECK_FAILURE: Self
pub const RANGE_NOT_FOUND: Self
pub const NOT_SAFE_MODE_DRIVER: Self
pub const FAILED_DRIVER_ENTRY: Self
pub const DEVICE_ENUMERATION_ERROR: Self
pub const MOUNT_POINT_NOT_RESOLVED: Self
pub const INVALID_DEVICE_OBJECT_PARAMETER: Self
pub const MCA_OCCURED: Self
pub const DRIVER_DATABASE_ERROR: Self
pub const SYSTEM_HIVE_TOO_LARGE: Self
pub const DRIVER_FAILED_PRIOR_UNLOAD: Self
pub const VOLSNAP_PREPARE_HIBERNATE: Self
pub const HIBERNATION_FAILURE: Self
pub const PWD_TOO_LONG: Self
pub const FILE_SYSTEM_LIMITATION: Self
pub const ASSERTION_FAILURE: Self
pub const ACPI_ERROR: Self
pub const WOW_ASSERTION: Self
pub const PNP_BAD_MPS_TABLE: Self
pub const PNP_TRANSLATION_FAILED: Self
pub const PNP_IRQ_TRANSLATION_FAILED: Self
pub const PNP_INVALID_ID: Self
pub const WAKE_SYSTEM_DEBUGGER: Self
pub const HANDLES_CLOSED: Self
pub const EXTRANEOUS_INFORMATION: Self
pub const RXACT_COMMIT_NECESSARY: Self
pub const MEDIA_CHECK: Self
pub const GUID_SUBSTITUTION_MADE: Self
pub const STOPPED_ON_SYMLINK: Self
pub const LONGJUMP: Self
pub const PLUGPLAY_QUERY_VETOED: Self
pub const UNWIND_CONSOLIDATE: Self
pub const REGISTRY_HIVE_RECOVERED: Self
pub const DLL_MIGHT_BE_INSECURE: Self
pub const DLL_MIGHT_BE_INCOMPATIBLE: Self
pub const DBG_EXCEPTION_NOT_HANDLED: Self
pub const DBG_REPLY_LATER: Self
pub const DBG_UNABLE_TO_PROVIDE_HANDLE: Self
pub const DBG_TERMINATE_THREAD: Self
pub const DBG_TERMINATE_PROCESS: Self
pub const DBG_CONTROL_C: Self
pub const DBG_PRINTEXCEPTION_C: Self
pub const DBG_RIPEXCEPTION: Self
pub const DBG_CONTROL_BREAK: Self
pub const DBG_COMMAND_EXCEPTION: Self
pub const OBJECT_NAME_EXISTS: Self
pub const THREAD_WAS_SUSPENDED: Self
pub const IMAGE_NOT_AT_BASE: Self
pub const RXACT_STATE_CREATED: Self
pub const SEGMENT_NOTIFICATION: Self
pub const BAD_CURRENT_DIRECTORY: Self
pub const FT_READ_RECOVERY_FROM_BACKUP: Self
pub const FT_WRITE_RECOVERY: Self
pub const IMAGE_MACHINE_TYPE_MISMATCH: Self
pub const RECEIVE_PARTIAL: Self
pub const RECEIVE_EXPEDITED: Self
pub const RECEIVE_PARTIAL_EXPEDITED: Self
pub const EVENT_DONE: Self
pub const EVENT_PENDING: Self
pub const CHECKING_FILE_SYSTEM: Self
pub const FATAL_APP_EXIT: Self
pub const PREDEFINED_HANDLE: Self
pub const WAS_UNLOCKED: Self
pub const SERVICE_NOTIFICATION: Self
pub const WAS_LOCKED: Self
pub const LOG_HARD_ERROR: Self
pub const ALREADY_WIN32: Self
pub const IMAGE_MACHINE_TYPE_MISMATCH_EXE: Self
pub const NO_YIELD_PERFORMED: Self
pub const TIMER_RESUME_IGNORED: Self
pub const ARBITRATION_UNHANDLED: Self
pub const CARDBUS_NOT_SUPPORTED: Self
pub const MP_PROCESSOR_MISMATCH: Self
pub const HIBERNATED: Self
pub const RESUME_HIBERNATION: Self
pub const FIRMWARE_UPDATED: Self
pub const DRIVERS_LEAKING_LOCKED_PAGES: Self
pub const WAKE_SYSTEM: Self
pub const WAIT_1: Self
pub const WAIT_2: Self
pub const WAIT_3: Self
pub const WAIT_63: Self
pub const ABANDONED_WAIT_0: Self
pub const ABANDONED_WAIT_63: Self
pub const USER_APC: Self
pub const KERNEL_APC: Self
pub const ALERTED: Self
pub const ELEVATION_REQUIRED: Self
pub const REPARSE: Self
pub const OPLOCK_BREAK_IN_PROGRESS: Self
pub const VOLUME_MOUNTED: Self
pub const RXACT_COMMITTED: Self
pub const NOTIFY_CLEANUP: Self
pub const PRIMARY_TRANSPORT_CONNECT_FAILED: Self
pub const PAGE_FAULT_TRANSITION: Self
pub const PAGE_FAULT_DEMAND_ZERO: Self
pub const PAGE_FAULT_COPY_ON_WRITE: Self
pub const PAGE_FAULT_GUARD_PAGE: Self
pub const PAGE_FAULT_PAGING_FILE: Self
pub const CACHE_PAGE_LOCKED: Self
pub const CRASH_DUMP: Self
pub const BUFFER_ALL_ZEROS: Self
pub const REPARSE_OBJECT: Self
pub const RESOURCE_REQUIREMENTS_CHANGED: Self
pub const TRANSLATION_COMPLETE: Self
pub const NOTHING_TO_TERMINATE: Self
pub const PROCESS_NOT_IN_JOB: Self
pub const PROCESS_IN_JOB: Self
pub const VOLSNAP_HIBERNATE_READY: Self
pub const FSFILTER_OP_COMPLETED_SUCCESSFULLY: Self
pub const INTERRUPT_VECTOR_ALREADY_CONNECTED: Self
pub const INTERRUPT_STILL_CONNECTED: Self
pub const WAIT_FOR_OPLOCK: Self
pub const DBG_EXCEPTION_HANDLED: Self
pub const DBG_CONTINUE: Self
pub const CALLBACK_POP_STACK: Self
pub const COMPRESSION_DISABLED: Self
pub const CANTFETCHBACKWARDS: Self
pub const CANTSCROLLBACKWARDS: Self
pub const ROWSNOTRELEASED: Self
pub const BAD_ACCESSOR_FLAGS: Self
pub const ERRORS_ENCOUNTERED: Self
pub const NOT_CAPABLE: Self
pub const REQUEST_OUT_OF_SEQUENCE: Self
pub const VERSION_PARSE_ERROR: Self
pub const BADSTARTPOSITION: Self
pub const MEMORY_HARDWARE: Self
pub const DISK_REPAIR_DISABLED: Self
pub const INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE: Self
pub const SYSTEM_POWERSTATE_TRANSITION: Self
pub const SYSTEM_POWERSTATE_COMPLEX_TRANSITION: Self
pub const MCA_EXCEPTION: Self
pub const ACCESS_AUDIT_BY_POLICY: Self
pub const ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY: Self
pub const ABANDON_HIBERFILE: Self
pub const LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED: Self
pub const LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR: Self
pub const LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR: Self
pub const BAD_MCFG_TABLE: Self
pub const DISK_REPAIR_REDIRECTED: Self
pub const DISK_REPAIR_UNSUCCESSFUL: Self
pub const CORRUPT_LOG_OVERFULL: Self
pub const CORRUPT_LOG_CORRUPTED: Self
pub const CORRUPT_LOG_UNAVAILABLE: Self
pub const CORRUPT_LOG_DELETED_FULL: Self
pub const CORRUPT_LOG_CLEARED: Self
pub const ORPHAN_NAME_EXHAUSTED: Self
pub const OPLOCK_SWITCHED_TO_NEW_HANDLE: Self
pub const CANNOT_GRANT_REQUESTED_OPLOCK: Self
pub const CANNOT_BREAK_OPLOCK: Self
pub const OPLOCK_HANDLE_CLOSED: Self
pub const NO_ACE_CONDITION: Self
pub const INVALID_ACE_CONDITION: Self
pub const FILE_HANDLE_REVOKED: Self
pub const IMAGE_AT_DIFFERENT_BASE: Self
pub const ENCRYPTED_IO_NOT_POSSIBLE: Self
pub const FILE_METADATA_OPTIMIZATION_IN_PROGRESS: Self
pub const QUOTA_ACTIVITY: Self
pub const HANDLE_REVOKED: Self
pub const CALLBACK_INVOKE_INLINE: Self
pub const CPU_SET_INVALID: Self
pub const ENCLAVE_NOT_TERMINATED: Self
pub const ENCLAVE_VIOLATION: Self
pub const EA_ACCESS_DENIED: Self
pub const OPERATION_ABORTED: Self
pub const IO_INCOMPLETE: Self
pub const IO_PENDING: Self
pub const NOACCESS: Self
pub const SWAPERROR: Self
pub const STACK_OVERFLOW: Self
pub const INVALID_MESSAGE: Self
pub const CAN_NOT_COMPLETE: Self
pub const INVALID_FLAGS: Self
pub const UNRECOGNIZED_VOLUME: Self
pub const FILE_INVALID: Self
pub const FULLSCREEN_MODE: Self
pub const NO_TOKEN: Self
pub const BADDB: Self
pub const BADKEY: Self
pub const CANTOPEN: Self
pub const CANTREAD: Self
pub const CANTWRITE: Self
pub const REGISTRY_RECOVERED: Self
pub const REGISTRY_CORRUPT: Self
pub const REGISTRY_IO_FAILED: Self
pub const NOT_REGISTRY_FILE: Self
pub const KEY_DELETED: Self
pub const NO_LOG_SPACE: Self
pub const KEY_HAS_CHILDREN: Self
pub const CHILD_MUST_BE_VOLATILE: Self
pub const NOTIFY_ENUM_DIR: Self
pub const DEPENDENT_SERVICES_RUNNING: Self
pub const INVALID_SERVICE_CONTROL: Self
pub const SERVICE_REQUEST_TIMEOUT: Self
pub const SERVICE_NO_THREAD: Self
pub const SERVICE_DATABASE_LOCKED: Self
pub const SERVICE_ALREADY_RUNNING: Self
pub const INVALID_SERVICE_ACCOUNT: Self
pub const SERVICE_DISABLED: Self
pub const CIRCULAR_DEPENDENCY: Self
pub const SERVICE_DOES_NOT_EXIST: Self
pub const SERVICE_CANNOT_ACCEPT_CTRL: Self
pub const SERVICE_NOT_ACTIVE: Self
pub const FAILED_SERVICE_CONTROLLER_CONNECT: Self
pub const EXCEPTION_IN_SERVICE: Self
pub const DATABASE_DOES_NOT_EXIST: Self
pub const SERVICE_SPECIFIC_ERROR: Self
pub const PROCESS_ABORTED: Self
pub const SERVICE_DEPENDENCY_FAIL: Self
pub const SERVICE_LOGON_FAILED: Self
pub const SERVICE_START_HANG: Self
pub const INVALID_SERVICE_LOCK: Self
pub const SERVICE_MARKED_FOR_DELETE: Self
pub const SERVICE_EXISTS: Self
pub const ALREADY_RUNNING_LKG: Self
pub const SERVICE_DEPENDENCY_DELETED: Self
pub const BOOT_ALREADY_ACCEPTED: Self
pub const SERVICE_NEVER_STARTED: Self
pub const DUPLICATE_SERVICE_NAME: Self
pub const DIFFERENT_SERVICE_ACCOUNT: Self
pub const CANNOT_DETECT_DRIVER_FAILURE: Self
pub const CANNOT_DETECT_PROCESS_ABORT: Self
pub const NO_RECOVERY_PROGRAM: Self
pub const SERVICE_NOT_IN_EXE: Self
pub const NOT_SAFEBOOT_SERVICE: Self
pub const END_OF_MEDIA: Self
pub const FILEMARK_DETECTED: Self
pub const BEGINNING_OF_MEDIA: Self
pub const SETMARK_DETECTED: Self
pub const NO_DATA_DETECTED: Self
pub const PARTITION_FAILURE: Self
pub const INVALID_BLOCK_LENGTH: Self
pub const DEVICE_NOT_PARTITIONED: Self
pub const UNABLE_TO_LOCK_MEDIA: Self
pub const UNABLE_TO_UNLOAD_MEDIA: Self
pub const MEDIA_CHANGED: Self
pub const BUS_RESET: Self
pub const NO_MEDIA_IN_DRIVE: Self
pub const NO_UNICODE_TRANSLATION: Self
pub const DLL_INIT_FAILED: Self
pub const SHUTDOWN_IN_PROGRESS: Self
pub const NO_SHUTDOWN_IN_PROGRESS: Self
pub const IO_DEVICE: Self
pub const SERIAL_NO_DEVICE: Self
pub const IRQ_BUSY: Self
pub const MORE_WRITES: Self
pub const COUNTER_TIMEOUT: Self
pub const FLOPPY_ID_MARK_NOT_FOUND: Self
pub const FLOPPY_WRONG_CYLINDER: Self
pub const FLOPPY_UNKNOWN_ERROR: Self
pub const FLOPPY_BAD_REGISTERS: Self
pub const DISK_RECALIBRATE_FAILED: Self
pub const DISK_OPERATION_FAILED: Self
pub const DISK_RESET_FAILED: Self
pub const EOM_OVERFLOW: Self
pub const NOT_ENOUGH_SERVER_MEMORY: Self
pub const POSSIBLE_DEADLOCK: Self
pub const MAPPED_ALIGNMENT: Self
pub const SET_POWER_STATE_VETOED: Self
pub const SET_POWER_STATE_FAILED: Self
pub const TOO_MANY_LINKS: Self
pub const OLD_WIN_VERSION: Self
pub const APP_WRONG_OS: Self
pub const SINGLE_INSTANCE_APP: Self
pub const RMODE_APP: Self
pub const INVALID_DLL: Self
pub const NO_ASSOCIATION: Self
pub const DDE_FAIL: Self
pub const DLL_NOT_FOUND: Self
pub const NO_MORE_USER_HANDLES: Self
pub const MESSAGE_SYNC_ONLY: Self
pub const SOURCE_ELEMENT_EMPTY: Self
pub const DESTINATION_ELEMENT_FULL: Self
pub const ILLEGAL_ELEMENT_ADDRESS: Self
pub const MAGAZINE_NOT_PRESENT: Self
pub const DEVICE_REINITIALIZATION_NEEDED: Self
pub const DEVICE_REQUIRES_CLEANING: Self
pub const DEVICE_DOOR_OPEN: Self
pub const DEVICE_NOT_CONNECTED: Self
pub const NOT_FOUND: Self
pub const NO_MATCH: Self
pub const SET_NOT_FOUND: Self
pub const POINT_NOT_FOUND: Self
pub const NO_TRACKING_SERVICE: Self
pub const NO_VOLUME_ID: Self
pub const UNABLE_TO_REMOVE_REPLACED: Self
pub const UNABLE_TO_MOVE_REPLACEMENT: Self
pub const UNABLE_TO_MOVE_REPLACEMENT_2: Self
pub const JOURNAL_DELETE_IN_PROGRESS: Self
pub const JOURNAL_NOT_ACTIVE: Self
pub const POTENTIAL_FILE_FOUND: Self
pub const JOURNAL_ENTRY_DELETED: Self
pub const SHUTDOWN_IS_SCHEDULED: Self
pub const SHUTDOWN_USERS_LOGGED_ON: Self
pub const BAD_DEVICE: Self
pub const CONNECTION_UNAVAIL: Self
pub const DEVICE_ALREADY_REMEMBERED: Self
pub const NO_NET_OR_BAD_PATH: Self
pub const BAD_PROVIDER: Self
pub const CANNOT_OPEN_PROFILE: Self
pub const BAD_PROFILE: Self
pub const NOT_CONTAINER: Self
pub const EXTENDED_ERROR: Self
pub const INVALID_GROUPNAME: Self
pub const INVALID_COMPUTERNAME: Self
pub const INVALID_EVENTNAME: Self
pub const INVALID_DOMAINNAME: Self
pub const INVALID_SERVICENAME: Self
pub const INVALID_NETNAME: Self
pub const INVALID_SHARENAME: Self
pub const INVALID_PASSWORDNAME: Self
pub const INVALID_MESSAGENAME: Self
pub const INVALID_MESSAGEDEST: Self
pub const SESSION_CREDENTIAL_CONFLICT: Self
pub const REMOTE_SESSION_LIMIT_EXCEEDED: Self
pub const DUP_DOMAINNAME: Self
pub const NO_NETWORK: Self
pub const CANCELLED: Self
pub const USER_MAPPED_FILE: Self
pub const CONNECTION_REFUSED: Self
pub const GRACEFUL_DISCONNECT: Self
pub const ADDRESS_ALREADY_ASSOCIATED: Self
pub const ADDRESS_NOT_ASSOCIATED: Self
pub const CONNECTION_INVALID: Self
pub const CONNECTION_ACTIVE: Self
pub const NETWORK_UNREACHABLE: Self
pub const HOST_UNREACHABLE: Self
pub const PROTOCOL_UNREACHABLE: Self
pub const PORT_UNREACHABLE: Self
pub const REQUEST_ABORTED: Self
pub const CONNECTION_ABORTED: Self
pub const RETRY: Self
pub const CONNECTION_COUNT_LIMIT: Self
pub const LOGIN_TIME_RESTRICTION: Self
pub const LOGIN_WKSTA_RESTRICTION: Self
pub const INCORRECT_ADDRESS: Self
pub const ALREADY_REGISTERED: Self
pub const SERVICE_NOT_FOUND: Self
pub const NOT_AUTHENTICATED: Self
pub const NOT_LOGGED_ON: Self
pub const CONTINUE: Self
pub const ALREADY_INITIALIZED: Self
pub const NO_MORE_DEVICES: Self
pub const NO_SUCH_SITE: Self
pub const DOMAIN_CONTROLLER_EXISTS: Self
pub const ONLY_IF_CONNECTED: Self
pub const OVERRIDE_NOCHANGES: Self
pub const BAD_USER_PROFILE: Self
pub const NOT_SUPPORTED_ON_SBS: Self
pub const SERVER_SHUTDOWN_IN_PROGRESS: Self
pub const HOST_DOWN: Self
pub const NON_ACCOUNT_SID: Self
pub const NON_DOMAIN_SID: Self
pub const APPHELP_BLOCK: Self
pub const ACCESS_DISABLED_BY_POLICY: Self
pub const REG_NAT_CONSUMPTION: Self
pub const CSCSHARE_OFFLINE: Self
pub const PKINIT_FAILURE: Self
pub const SMARTCARD_SUBSYSTEM_FAILURE: Self
pub const DOWNGRADE_DETECTED: Self
pub const MACHINE_LOCKED: Self
pub const SMB_GUEST_LOGON_BLOCKED: Self
pub const CALLBACK_SUPPLIED_INVALID_DATA: Self
pub const SYNC_FOREGROUND_REFRESH_REQUIRED: Self
pub const DRIVER_BLOCKED: Self
pub const INVALID_IMPORT_OF_NON_DLL: Self
pub const ACCESS_DISABLED_WEBBLADE: Self
pub const ACCESS_DISABLED_WEBBLADE_TAMPER: Self
pub const RECOVERY_FAILURE: Self
pub const ALREADY_FIBER: Self
pub const ALREADY_THREAD: Self
pub const STACK_BUFFER_OVERRUN: Self
pub const PARAMETER_QUOTA_EXCEEDED: Self
pub const DEBUGGER_INACTIVE: Self
pub const DELAY_LOAD_FAILED: Self
pub const VDM_DISALLOWED: Self
pub const UNIDENTIFIED_ERROR: Self
pub const INVALID_CRUNTIME_PARAMETER: Self
pub const BEYOND_VDL: Self
pub const INCOMPATIBLE_SERVICE_SID_TYPE: Self
pub const DRIVER_PROCESS_TERMINATED: Self
pub const IMPLEMENTATION_LIMIT: Self
pub const PROCESS_IS_PROTECTED: Self
pub const SERVICE_NOTIFY_CLIENT_LAGGING: Self
pub const DISK_QUOTA_EXCEEDED: Self
pub const CONTENT_BLOCKED: Self
pub const INCOMPATIBLE_SERVICE_PRIVILEGE: Self
pub const APP_HANG: Self
pub const INVALID_LABEL: Self
pub const NOT_ALL_ASSIGNED: Self
pub const SOME_NOT_MAPPED: Self
pub const NO_QUOTAS_FOR_ACCOUNT: Self
pub const LOCAL_USER_SESSION_KEY: Self
pub const NULL_LM_PASSWORD: Self
pub const UNKNOWN_REVISION: Self
pub const REVISION_MISMATCH: Self
pub const INVALID_OWNER: Self
pub const INVALID_PRIMARY_GROUP: Self
pub const NO_IMPERSONATION_TOKEN: Self
pub const CANT_DISABLE_MANDATORY: Self
pub const NO_LOGON_SERVERS: Self
pub const NO_SUCH_LOGON_SESSION: Self
pub const NO_SUCH_PRIVILEGE: Self
pub const PRIVILEGE_NOT_HELD: Self
pub const INVALID_ACCOUNT_NAME: Self
pub const USER_EXISTS: Self
pub const NO_SUCH_USER: Self
pub const GROUP_EXISTS: Self
pub const NO_SUCH_GROUP: Self
pub const MEMBER_IN_GROUP: Self
pub const MEMBER_NOT_IN_GROUP: Self
pub const LAST_ADMIN: Self
pub const WRONG_PASSWORD: Self
pub const ILL_FORMED_PASSWORD: Self
pub const PASSWORD_RESTRICTION: Self
pub const LOGON_FAILURE: Self
pub const ACCOUNT_RESTRICTION: Self
pub const INVALID_LOGON_HOURS: Self
pub const INVALID_WORKSTATION: Self
pub const PASSWORD_EXPIRED: Self
pub const ACCOUNT_DISABLED: Self
pub const NONE_MAPPED: Self
pub const TOO_MANY_LUIDS_REQUESTED: Self
pub const LUIDS_EXHAUSTED: Self
pub const INVALID_SUB_AUTHORITY: Self
pub const INVALID_ACL: Self
pub const INVALID_SID: Self
pub const INVALID_SECURITY_DESCR: Self
pub const BAD_INHERITANCE_ACL: Self
pub const SERVER_DISABLED: Self
pub const SERVER_NOT_DISABLED: Self
pub const INVALID_ID_AUTHORITY: Self
pub const ALLOTTED_SPACE_EXCEEDED: Self
pub const INVALID_GROUP_ATTRIBUTES: Self
pub const BAD_IMPERSONATION_LEVEL: Self
pub const CANT_OPEN_ANONYMOUS: Self
pub const BAD_VALIDATION_CLASS: Self
pub const BAD_TOKEN_TYPE: Self
pub const NO_SECURITY_ON_OBJECT: Self
pub const CANT_ACCESS_DOMAIN_INFO: Self
pub const INVALID_SERVER_STATE: Self
pub const INVALID_DOMAIN_STATE: Self
pub const INVALID_DOMAIN_ROLE: Self
pub const NO_SUCH_DOMAIN: Self
pub const DOMAIN_EXISTS: Self
pub const DOMAIN_LIMIT_EXCEEDED: Self
pub const INTERNAL_DB_CORRUPTION: Self
pub const INTERNAL_ERROR: Self
pub const GENERIC_NOT_MAPPED: Self
pub const BAD_DESCRIPTOR_FORMAT: Self
pub const NOT_LOGON_PROCESS: Self
pub const LOGON_SESSION_EXISTS: Self
pub const NO_SUCH_PACKAGE: Self
pub const BAD_LOGON_SESSION_STATE: Self
pub const LOGON_SESSION_COLLISION: Self
pub const INVALID_LOGON_TYPE: Self
pub const CANNOT_IMPERSONATE: Self
pub const RXACT_INVALID_STATE: Self
pub const RXACT_COMMIT_FAILURE: Self
pub const SPECIAL_ACCOUNT: Self
pub const SPECIAL_GROUP: Self
pub const SPECIAL_USER: Self
pub const MEMBERS_PRIMARY_GROUP: Self
pub const TOKEN_ALREADY_IN_USE: Self
pub const NO_SUCH_ALIAS: Self
pub const MEMBER_NOT_IN_ALIAS: Self
pub const MEMBER_IN_ALIAS: Self
pub const ALIAS_EXISTS: Self
pub const LOGON_NOT_GRANTED: Self
pub const TOO_MANY_SECRETS: Self
pub const SECRET_TOO_LONG: Self
pub const INTERNAL_DB_ERROR: Self
pub const TOO_MANY_CONTEXT_IDS: Self
pub const LOGON_TYPE_NOT_GRANTED: Self
pub const NT_CROSS_ENCRYPTION_REQUIRED: Self
pub const NO_SUCH_MEMBER: Self
pub const INVALID_MEMBER: Self
pub const TOO_MANY_SIDS: Self
pub const LM_CROSS_ENCRYPTION_REQUIRED: Self
pub const NO_INHERITANCE: Self
pub const FILE_CORRUPT: Self
pub const DISK_CORRUPT: Self
pub const NO_USER_SESSION_KEY: Self
pub const LICENSE_QUOTA_EXCEEDED: Self
pub const WRONG_TARGET_NAME: Self
pub const MUTUAL_AUTH_FAILED: Self
pub const TIME_SKEW: Self
pub const CURRENT_DOMAIN_NOT_ALLOWED: Self
pub const INVALID_WINDOW_HANDLE: Self
pub const INVALID_MENU_HANDLE: Self
pub const INVALID_CURSOR_HANDLE: Self
pub const INVALID_ACCEL_HANDLE: Self
pub const INVALID_HOOK_HANDLE: Self
pub const INVALID_DWP_HANDLE: Self
pub const TLW_WITH_WSCHILD: Self
pub const CANNOT_FIND_WND_CLASS: Self
pub const WINDOW_OF_OTHER_THREAD: Self
pub const HOTKEY_ALREADY_REGISTERED: Self
pub const CLASS_ALREADY_EXISTS: Self
pub const CLASS_DOES_NOT_EXIST: Self
pub const CLASS_HAS_WINDOWS: Self
pub const INVALID_INDEX: Self
pub const INVALID_ICON_HANDLE: Self
pub const PRIVATE_DIALOG_INDEX: Self
pub const LISTBOX_ID_NOT_FOUND: Self
pub const NO_WILDCARD_CHARACTERS: Self
pub const CLIPBOARD_NOT_OPEN: Self
pub const HOTKEY_NOT_REGISTERED: Self
pub const WINDOW_NOT_DIALOG: Self
pub const CONTROL_ID_NOT_FOUND: Self
pub const INVALID_COMBOBOX_MESSAGE: Self
pub const WINDOW_NOT_COMBOBOX: Self
pub const INVALID_EDIT_HEIGHT: Self
pub const DC_NOT_FOUND: Self
pub const INVALID_HOOK_FILTER: Self
pub const INVALID_FILTER_PROC: Self
pub const HOOK_NEEDS_HMOD: Self
pub const GLOBAL_ONLY_HOOK: Self
pub const JOURNAL_HOOK_SET: Self
pub const HOOK_NOT_INSTALLED: Self
pub const INVALID_LB_MESSAGE: Self
pub const SETCOUNT_ON_BAD_LB: Self
pub const LB_WITHOUT_TABSTOPS: Self
pub const DESTROY_OBJECT_OF_OTHER_THREAD: Self
pub const CHILD_WINDOW_MENU: Self
pub const NO_SYSTEM_MENU: Self
pub const INVALID_MSGBOX_STYLE: Self
pub const INVALID_SPI_VALUE: Self
pub const SCREEN_ALREADY_LOCKED: Self
pub const HWNDS_HAVE_DIFF_PARENT: Self
pub const NOT_CHILD_WINDOW: Self
pub const INVALID_GW_COMMAND: Self
pub const INVALID_THREAD_ID: Self
pub const NON_MDICHILD_WINDOW: Self
pub const POPUP_ALREADY_ACTIVE: Self
pub const NO_SCROLLBARS: Self
pub const INVALID_SCROLLBAR_RANGE: Self
pub const INVALID_SHOWWIN_COMMAND: Self
pub const NO_SYSTEM_RESOURCES: Self
pub const NONPAGED_SYSTEM_RESOURCES: Self
pub const PAGED_SYSTEM_RESOURCES: Self
pub const WORKING_SET_QUOTA: Self
pub const PAGEFILE_QUOTA: Self
pub const COMMITMENT_LIMIT: Self
pub const MENU_ITEM_NOT_FOUND: Self
pub const INVALID_KEYBOARD_HANDLE: Self
pub const HOOK_TYPE_NOT_ALLOWED: Self
pub const REQUIRES_INTERACTIVE_WINDOWSTATION: Self
pub const TIMEOUT: Self
pub const INVALID_MONITOR_HANDLE: Self
pub const INCORRECT_SIZE: Self
pub const SYMLINK_CLASS_DISABLED: Self
pub const SYMLINK_NOT_SUPPORTED: Self
pub const XML_PARSE_ERROR: Self
pub const XMLDSIG_ERROR: Self
pub const RESTART_APPLICATION: Self
pub const WRONG_COMPARTMENT: Self
pub const AUTHIP_FAILURE: Self
pub const NO_NVRAM_RESOURCES: Self
pub const NOT_GUI_PROCESS: Self
pub const EVENTLOG_FILE_CORRUPT: Self
pub const EVENTLOG_CANT_START: Self
pub const LOG_FILE_FULL: Self
pub const EVENTLOG_FILE_CHANGED: Self
pub const CONTAINER_ASSIGNED: Self
pub const JOB_NO_CONTAINER: Self
pub const INVALID_TASK_NAME: Self
pub const INVALID_TASK_INDEX: Self
pub const THREAD_ALREADY_IN_TASK: Self
pub const INSTALL_SERVICE_FAILURE: Self
pub const INSTALL_USEREXIT: Self
pub const INSTALL_FAILURE: Self
pub const INSTALL_SUSPEND: Self
pub const UNKNOWN_PRODUCT: Self
pub const UNKNOWN_FEATURE: Self
pub const UNKNOWN_COMPONENT: Self
pub const UNKNOWN_PROPERTY: Self
pub const INVALID_HANDLE_STATE: Self
pub const BAD_CONFIGURATION: Self
pub const INDEX_ABSENT: Self
pub const INSTALL_SOURCE_ABSENT: Self
pub const INSTALL_PACKAGE_VERSION: Self
pub const PRODUCT_UNINSTALLED: Self
pub const BAD_QUERY_SYNTAX: Self
pub const INVALID_FIELD: Self
pub const DEVICE_REMOVED: Self
pub const INSTALL_ALREADY_RUNNING: Self
pub const INSTALL_PACKAGE_OPEN_FAILED: Self
pub const INSTALL_PACKAGE_INVALID: Self
pub const INSTALL_UI_FAILURE: Self
pub const INSTALL_LOG_FAILURE: Self
pub const INSTALL_LANGUAGE_UNSUPPORTED: Self
pub const INSTALL_TRANSFORM_FAILURE: Self
pub const INSTALL_PACKAGE_REJECTED: Self
pub const FUNCTION_NOT_CALLED: Self
pub const FUNCTION_FAILED: Self
pub const INVALID_TABLE: Self
pub const DATATYPE_MISMATCH: Self
pub const UNSUPPORTED_TYPE: Self
pub const CREATE_FAILED: Self
pub const INSTALL_TEMP_UNWRITABLE: Self
pub const INSTALL_PLATFORM_UNSUPPORTED: Self
pub const INSTALL_NOTUSED: Self
pub const PATCH_PACKAGE_OPEN_FAILED: Self
pub const PATCH_PACKAGE_INVALID: Self
pub const PATCH_PACKAGE_UNSUPPORTED: Self
pub const PRODUCT_VERSION: Self
pub const INVALID_COMMAND_LINE: Self
pub const INSTALL_REMOTE_DISALLOWED: Self
pub const SUCCESS_REBOOT_INITIATED: Self
pub const PATCH_TARGET_NOT_FOUND: Self
pub const PATCH_PACKAGE_REJECTED: Self
pub const INSTALL_TRANSFORM_REJECTED: Self
pub const INSTALL_REMOTE_PROHIBITED: Self
pub const PATCH_REMOVAL_UNSUPPORTED: Self
pub const UNKNOWN_PATCH: Self
pub const PATCH_NO_SEQUENCE: Self
pub const PATCH_REMOVAL_DISALLOWED: Self
pub const INVALID_PATCH_XML: Self
pub const PATCH_MANAGED_ADVERTISED_PRODUCT: Self
pub const INSTALL_SERVICE_SAFEBOOT: Self
pub const FAIL_FAST_EXCEPTION: Self
pub const INSTALL_REJECTED: Self
pub const DYNAMIC_CODE_BLOCKED: Self
pub const NOT_SAME_OBJECT: Self
pub const STRICT_CFG_VIOLATION: Self
pub const SET_CONTEXT_DENIED: Self
pub const CROSS_PARTITION_VIOLATION: Self
pub const INVALID_USER_BUFFER: Self
pub const UNRECOGNIZED_MEDIA: Self
pub const NO_TRUST_LSA_SECRET: Self
pub const NO_TRUST_SAM_ACCOUNT: Self
pub const TRUSTED_DOMAIN_FAILURE: Self
pub const TRUSTED_RELATIONSHIP_FAILURE: Self
pub const TRUST_FAILURE: Self
pub const NETLOGON_NOT_STARTED: Self
pub const ACCOUNT_EXPIRED: Self
pub const REDIRECTOR_HAS_OPEN_HANDLES: Self
pub const PRINTER_DRIVER_ALREADY_INSTALLED: Self
pub const UNKNOWN_PORT: Self
pub const UNKNOWN_PRINTER_DRIVER: Self
pub const UNKNOWN_PRINTPROCESSOR: Self
pub const INVALID_SEPARATOR_FILE: Self
pub const INVALID_PRIORITY: Self
pub const INVALID_PRINTER_NAME: Self
pub const PRINTER_ALREADY_EXISTS: Self
pub const INVALID_PRINTER_COMMAND: Self
pub const INVALID_DATATYPE: Self
pub const INVALID_ENVIRONMENT: Self
pub const NOLOGON_INTERDOMAIN_TRUST_ACCOUNT: Self
pub const NOLOGON_WORKSTATION_TRUST_ACCOUNT: Self
pub const NOLOGON_SERVER_TRUST_ACCOUNT: Self
pub const DOMAIN_TRUST_INCONSISTENT: Self
pub const SERVER_HAS_OPEN_HANDLES: Self
pub const RESOURCE_DATA_NOT_FOUND: Self
pub const RESOURCE_TYPE_NOT_FOUND: Self
pub const RESOURCE_NAME_NOT_FOUND: Self
pub const RESOURCE_LANG_NOT_FOUND: Self
pub const NOT_ENOUGH_QUOTA: Self
pub const INVALID_TIME: Self
pub const INVALID_FORM_NAME: Self
pub const INVALID_FORM_SIZE: Self
pub const ALREADY_WAITING: Self
pub const PRINTER_DELETED: Self
pub const INVALID_PRINTER_STATE: Self
pub const PASSWORD_MUST_CHANGE: Self
pub const DOMAIN_CONTROLLER_NOT_FOUND: Self
pub const ACCOUNT_LOCKED_OUT: Self
pub const NO_SITENAME: Self
pub const CANT_ACCESS_FILE: Self
pub const CANT_RESOLVE_FILENAME: Self
pub const KM_DRIVER_BLOCKED: Self
pub const CONTEXT_EXPIRED: Self
pub const PER_USER_TRUST_QUOTA_EXCEEDED: Self
pub const ALL_USER_TRUST_QUOTA_EXCEEDED: Self
pub const USER_DELETE_TRUST_QUOTA_EXCEEDED: Self
pub const AUTHENTICATION_FIREWALL_FAILED: Self
pub const REMOTE_PRINT_CONNECTIONS_BLOCKED: Self
pub const NTLM_BLOCKED: Self
pub const PASSWORD_CHANGE_REQUIRED: Self
pub const LOST_MODE_LOGON_RESTRICTION: Self
pub const INVALID_PIXEL_FORMAT: Self
pub const BAD_DRIVER: Self
pub const INVALID_WINDOW_STYLE: Self
pub const METAFILE_NOT_SUPPORTED: Self
pub const TRANSFORM_NOT_SUPPORTED: Self
pub const CLIPPING_NOT_SUPPORTED: Self
pub const INVALID_CMM: Self
pub const INVALID_PROFILE: Self
pub const TAG_NOT_FOUND: Self
pub const TAG_NOT_PRESENT: Self
pub const DUPLICATE_TAG: Self
pub const PROFILE_NOT_ASSOCIATED_WITH_DEVICE: Self
pub const PROFILE_NOT_FOUND: Self
pub const INVALID_COLORSPACE: Self
pub const ICM_NOT_ENABLED: Self
pub const DELETING_ICM_XFORM: Self
pub const INVALID_TRANSFORM: Self
pub const COLORSPACE_MISMATCH: Self
pub const INVALID_COLORINDEX: Self
pub const PROFILE_DOES_NOT_MATCH_DEVICE: Self
pub const CONNECTED_OTHER_PASSWORD: Self
pub const CONNECTED_OTHER_PASSWORD_DEFAULT: Self
pub const BAD_USERNAME: Self
pub const NOT_CONNECTED: Self
pub const OPEN_FILES: Self
pub const ACTIVE_CONNECTIONS: Self
pub const DEVICE_IN_USE: Self
pub const UNKNOWN_PRINT_MONITOR: Self
pub const PRINTER_DRIVER_IN_USE: Self
pub const SPOOL_FILE_NOT_FOUND: Self
pub const SPL_NO_STARTDOC: Self
pub const SPL_NO_ADDJOB: Self
pub const PRINT_PROCESSOR_ALREADY_INSTALLED: Self
pub const PRINT_MONITOR_ALREADY_INSTALLED: Self
pub const INVALID_PRINT_MONITOR: Self
pub const PRINT_MONITOR_IN_USE: Self
pub const PRINTER_HAS_JOBS_QUEUED: Self
pub const SUCCESS_REBOOT_REQUIRED: Self
pub const SUCCESS_RESTART_REQUIRED: Self
pub const PRINTER_NOT_FOUND: Self
pub const PRINTER_DRIVER_WARNED: Self
pub const PRINTER_DRIVER_BLOCKED: Self
pub const PRINTER_DRIVER_PACKAGE_IN_USE: Self
pub const CORE_DRIVER_PACKAGE_NOT_FOUND: Self
pub const FAIL_REBOOT_REQUIRED: Self
pub const FAIL_REBOOT_INITIATED: Self
pub const PRINTER_DRIVER_DOWNLOAD_NEEDED: Self
pub const PRINT_JOB_RESTART_REQUIRED: Self
pub const INVALID_PRINTER_DRIVER_MANIFEST: Self
pub const PRINTER_NOT_SHAREABLE: Self
pub const REQUEST_PAUSED: Self
pub const APPEXEC_CONDITION_NOT_SATISFIED: Self
pub const APPEXEC_HANDLE_INVALIDATED: Self
pub const APPEXEC_INVALID_HOST_GENERATION: Self
pub const APPEXEC_UNEXPECTED_PROCESS_REGISTRATION: Self
pub const APPEXEC_INVALID_HOST_STATE: Self
pub const APPEXEC_NO_DONOR: Self
pub const APPEXEC_HOST_ID_MISMATCH: Self
pub const APPEXEC_UNKNOWN_USER: Self
pub const IO_REISSUE_AS_CACHED: Self
pub const WINS_INTERNAL: Self
pub const CAN_NOT_DEL_LOCAL_WINS: Self
pub const STATIC_INIT: Self
pub const INC_BACKUP: Self
pub const FULL_BACKUP: Self
pub const REC_NON_EXISTENT: Self
pub const RPL_NOT_ALLOWED: Self
pub const DHCP_ADDRESS_CONFLICT: Self
pub const WMI_GUID_NOT_FOUND: Self
pub const WMI_INSTANCE_NOT_FOUND: Self
pub const WMI_ITEMID_NOT_FOUND: Self
pub const WMI_TRY_AGAIN: Self
pub const WMI_DP_NOT_FOUND: Self
pub const WMI_UNRESOLVED_INSTANCE_REF: Self
pub const WMI_ALREADY_ENABLED: Self
pub const WMI_GUID_DISCONNECTED: Self
pub const WMI_SERVER_UNAVAILABLE: Self
pub const WMI_DP_FAILED: Self
pub const WMI_INVALID_MOF: Self
pub const WMI_INVALID_REGINFO: Self
pub const WMI_ALREADY_DISABLED: Self
pub const WMI_READ_ONLY: Self
pub const WMI_SET_FAILURE: Self
pub const NOT_APPCONTAINER: Self
pub const APPCONTAINER_REQUIRED: Self
pub const NOT_SUPPORTED_IN_APPCONTAINER: Self
pub const INVALID_PACKAGE_SID_LENGTH: Self
pub const INVALID_MEDIA: Self
pub const INVALID_LIBRARY: Self
pub const INVALID_MEDIA_POOL: Self
pub const DRIVE_MEDIA_MISMATCH: Self
pub const MEDIA_OFFLINE: Self
pub const LIBRARY_OFFLINE: Self
pub const EMPTY: Self
pub const NOT_EMPTY: Self
pub const MEDIA_UNAVAILABLE: Self
pub const RESOURCE_DISABLED: Self
pub const INVALID_CLEANER: Self
pub const UNABLE_TO_CLEAN: Self
pub const OBJECT_NOT_FOUND: Self
pub const DATABASE_FAILURE: Self
pub const DATABASE_FULL: Self
pub const MEDIA_INCOMPATIBLE: Self
pub const RESOURCE_NOT_PRESENT: Self
pub const INVALID_OPERATION: Self
pub const MEDIA_NOT_AVAILABLE: Self
pub const DEVICE_NOT_AVAILABLE: Self
pub const REQUEST_REFUSED: Self
pub const INVALID_DRIVE_OBJECT: Self
pub const LIBRARY_FULL: Self
pub const MEDIUM_NOT_ACCESSIBLE: Self
pub const UNABLE_TO_LOAD_MEDIUM: Self
pub const UNABLE_TO_INVENTORY_DRIVE: Self
pub const UNABLE_TO_INVENTORY_SLOT: Self
pub const UNABLE_TO_INVENTORY_TRANSPORT: Self
pub const TRANSPORT_FULL: Self
pub const CONTROLLING_IEPORT: Self
pub const UNABLE_TO_EJECT_MOUNTED_MEDIA: Self
pub const CLEANER_SLOT_SET: Self
pub const CLEANER_SLOT_NOT_SET: Self
pub const CLEANER_CARTRIDGE_SPENT: Self
pub const UNEXPECTED_OMID: Self
pub const CANT_DELETE_LAST_ITEM: Self
pub const MESSAGE_EXCEEDS_MAX_SIZE: Self
pub const VOLUME_CONTAINS_SYS_FILES: Self
pub const INDIGENOUS_TYPE: Self
pub const NO_SUPPORTING_DRIVES: Self
pub const CLEANER_CARTRIDGE_INSTALLED: Self
pub const IEPORT_FULL: Self
pub const FILE_OFFLINE: Self
pub const REMOTE_STORAGE_NOT_ACTIVE: Self
pub const REMOTE_STORAGE_MEDIA_ERROR: Self
pub const NOT_A_REPARSE_POINT: Self
pub const REPARSE_ATTRIBUTE_CONFLICT: Self
pub const INVALID_REPARSE_DATA: Self
pub const REPARSE_TAG_INVALID: Self
pub const REPARSE_TAG_MISMATCH: Self
pub const REPARSE_POINT_ENCOUNTERED: Self
pub const APP_DATA_NOT_FOUND: Self
pub const APP_DATA_EXPIRED: Self
pub const APP_DATA_CORRUPT: Self
pub const APP_DATA_LIMIT_EXCEEDED: Self
pub const APP_DATA_REBOOT_REQUIRED: Self
pub const SECUREBOOT_ROLLBACK_DETECTED: Self
pub const SECUREBOOT_POLICY_VIOLATION: Self
pub const SECUREBOOT_INVALID_POLICY: Self
pub const SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND: Self
pub const SECUREBOOT_POLICY_NOT_SIGNED: Self
pub const SECUREBOOT_NOT_ENABLED: Self
pub const SECUREBOOT_FILE_REPLACED: Self
pub const SECUREBOOT_POLICY_NOT_AUTHORIZED: Self
pub const SECUREBOOT_POLICY_UNKNOWN: Self
pub const SECUREBOOT_POLICY_MISSING_ANTIROLLBACKVERSION: Self
pub const SECUREBOOT_PLATFORM_ID_MISMATCH: Self
pub const SECUREBOOT_POLICY_ROLLBACK_DETECTED: Self
pub const SECUREBOOT_POLICY_UPGRADE_MISMATCH: Self
pub const SECUREBOOT_REQUIRED_POLICY_FILE_MISSING: Self
pub const SECUREBOOT_NOT_BASE_POLICY: Self
pub const SECUREBOOT_NOT_SUPPLEMENTAL_POLICY: Self
pub const OFFLOAD_READ_FLT_NOT_SUPPORTED: Self
pub const OFFLOAD_WRITE_FLT_NOT_SUPPORTED: Self
pub const OFFLOAD_READ_FILE_NOT_SUPPORTED: Self
pub const OFFLOAD_WRITE_FILE_NOT_SUPPORTED: Self
pub const ALREADY_HAS_STREAM_ID: Self
pub const SMR_GARBAGE_COLLECTION_REQUIRED: Self
pub const WOF_WIM_HEADER_CORRUPT: Self
pub const WOF_WIM_RESOURCE_TABLE_CORRUPT: Self
pub const WOF_FILE_RESOURCE_TABLE_CORRUPT: Self
pub const VOLUME_NOT_SIS_ENABLED: Self
pub const SYSTEM_INTEGRITY_ROLLBACK_DETECTED: Self
pub const SYSTEM_INTEGRITY_POLICY_VIOLATION: Self
pub const SYSTEM_INTEGRITY_INVALID_POLICY: Self
pub const SYSTEM_INTEGRITY_POLICY_NOT_SIGNED: Self
pub const SYSTEM_INTEGRITY_TOO_MANY_POLICIES: Self
pub const SYSTEM_INTEGRITY_SUPPLEMENTAL_POLICY_NOT_AUTHORIZED: Self
pub const VSM_NOT_INITIALIZED: Self
pub const VSM_DMA_PROTECTION_NOT_IN_USE: Self
pub const PLATFORM_MANIFEST_NOT_AUTHORIZED: Self
pub const PLATFORM_MANIFEST_INVALID: Self
pub const PLATFORM_MANIFEST_FILE_NOT_AUTHORIZED: Self
pub const PLATFORM_MANIFEST_CATALOG_NOT_AUTHORIZED: Self
pub const PLATFORM_MANIFEST_BINARY_ID_NOT_FOUND: Self
pub const PLATFORM_MANIFEST_NOT_ACTIVE: Self
pub const PLATFORM_MANIFEST_NOT_SIGNED: Self
pub const DEPENDENT_RESOURCE_EXISTS: Self
pub const DEPENDENCY_NOT_FOUND: Self
pub const DEPENDENCY_ALREADY_EXISTS: Self
pub const RESOURCE_NOT_ONLINE: Self
pub const HOST_NODE_NOT_AVAILABLE: Self
pub const RESOURCE_NOT_AVAILABLE: Self
pub const RESOURCE_NOT_FOUND: Self
pub const SHUTDOWN_CLUSTER: Self
pub const CANT_EVICT_ACTIVE_NODE: Self
pub const OBJECT_ALREADY_EXISTS: Self
pub const OBJECT_IN_LIST: Self
pub const GROUP_NOT_AVAILABLE: Self
pub const GROUP_NOT_FOUND: Self
pub const GROUP_NOT_ONLINE: Self
pub const HOST_NODE_NOT_RESOURCE_OWNER: Self
pub const HOST_NODE_NOT_GROUP_OWNER: Self
pub const RESMON_CREATE_FAILED: Self
pub const RESMON_ONLINE_FAILED: Self
pub const RESOURCE_ONLINE: Self
pub const QUORUM_RESOURCE: Self
pub const NOT_QUORUM_CAPABLE: Self
pub const CLUSTER_SHUTTING_DOWN: Self
pub const INVALID_STATE: Self
pub const RESOURCE_PROPERTIES_STORED: Self
pub const NOT_QUORUM_CLASS: Self
pub const CORE_RESOURCE: Self
pub const QUORUM_RESOURCE_ONLINE_FAILED: Self
pub const QUORUMLOG_OPEN_FAILED: Self
pub const CLUSTERLOG_CORRUPT: Self
pub const CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE: Self
pub const CLUSTERLOG_EXCEEDS_MAXSIZE: Self
pub const CLUSTERLOG_CHKPOINT_NOT_FOUND: Self
pub const CLUSTERLOG_NOT_ENOUGH_SPACE: Self
pub const QUORUM_OWNER_ALIVE: Self
pub const NETWORK_NOT_AVAILABLE: Self
pub const NODE_NOT_AVAILABLE: Self
pub const ALL_NODES_NOT_AVAILABLE: Self
pub const RESOURCE_FAILED: Self
pub const CLUSTER_INVALID_NODE: Self
pub const CLUSTER_NODE_EXISTS: Self
pub const CLUSTER_JOIN_IN_PROGRESS: Self
pub const CLUSTER_NODE_NOT_FOUND: Self
pub const CLUSTER_LOCAL_NODE_NOT_FOUND: Self
pub const CLUSTER_NETWORK_EXISTS: Self
pub const CLUSTER_NETWORK_NOT_FOUND: Self
pub const CLUSTER_NETINTERFACE_EXISTS: Self
pub const CLUSTER_NETINTERFACE_NOT_FOUND: Self
pub const CLUSTER_INVALID_REQUEST: Self
pub const CLUSTER_INVALID_NETWORK_PROVIDER: Self
pub const CLUSTER_NODE_DOWN: Self
pub const CLUSTER_NODE_UNREACHABLE: Self
pub const CLUSTER_NODE_NOT_MEMBER: Self
pub const CLUSTER_JOIN_NOT_IN_PROGRESS: Self
pub const CLUSTER_INVALID_NETWORK: Self
pub const CLUSTER_NODE_UP: Self
pub const CLUSTER_IPADDR_IN_USE: Self
pub const CLUSTER_NODE_NOT_PAUSED: Self
pub const CLUSTER_NO_SECURITY_CONTEXT: Self
pub const CLUSTER_NETWORK_NOT_INTERNAL: Self
pub const CLUSTER_NODE_ALREADY_UP: Self
pub const CLUSTER_NODE_ALREADY_DOWN: Self
pub const CLUSTER_NETWORK_ALREADY_ONLINE: Self
pub const CLUSTER_NETWORK_ALREADY_OFFLINE: Self
pub const CLUSTER_NODE_ALREADY_MEMBER: Self
pub const CLUSTER_LAST_INTERNAL_NETWORK: Self
pub const CLUSTER_NETWORK_HAS_DEPENDENTS: Self
pub const INVALID_OPERATION_ON_QUORUM: Self
pub const DEPENDENCY_NOT_ALLOWED: Self
pub const CLUSTER_NODE_PAUSED: Self
pub const NODE_CANT_HOST_RESOURCE: Self
pub const CLUSTER_NODE_NOT_READY: Self
pub const CLUSTER_NODE_SHUTTING_DOWN: Self
pub const CLUSTER_JOIN_ABORTED: Self
pub const CLUSTER_INCOMPATIBLE_VERSIONS: Self
pub const CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED: Self
pub const CLUSTER_SYSTEM_CONFIG_CHANGED: Self
pub const CLUSTER_RESOURCE_TYPE_NOT_FOUND: Self
pub const CLUSTER_RESTYPE_NOT_SUPPORTED: Self
pub const CLUSTER_RESNAME_NOT_FOUND: Self
pub const CLUSTER_NO_RPC_PACKAGES_REGISTERED: Self
pub const CLUSTER_OWNER_NOT_IN_PREFLIST: Self
pub const CLUSTER_DATABASE_SEQMISMATCH: Self
pub const RESMON_INVALID_STATE: Self
pub const CLUSTER_GUM_NOT_LOCKER: Self
pub const QUORUM_DISK_NOT_FOUND: Self
pub const DATABASE_BACKUP_CORRUPT: Self
pub const CLUSTER_NODE_ALREADY_HAS_DFS_ROOT: Self
pub const RESOURCE_PROPERTY_UNCHANGEABLE: Self
pub const NO_ADMIN_ACCESS_POINT: Self
pub const CLUSTER_MEMBERSHIP_INVALID_STATE: Self
pub const CLUSTER_QUORUMLOG_NOT_FOUND: Self
pub const CLUSTER_MEMBERSHIP_HALT: Self
pub const CLUSTER_INSTANCE_ID_MISMATCH: Self
pub const CLUSTER_NETWORK_NOT_FOUND_FOR_IP: Self
pub const CLUSTER_PROPERTY_DATA_TYPE_MISMATCH: Self
pub const CLUSTER_EVICT_WITHOUT_CLEANUP: Self
pub const CLUSTER_PARAMETER_MISMATCH: Self
pub const NODE_CANNOT_BE_CLUSTERED: Self
pub const CLUSTER_WRONG_OS_VERSION: Self
pub const CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME: Self
pub const CLUSCFG_ALREADY_COMMITTED: Self
pub const CLUSCFG_ROLLBACK_FAILED: Self
pub const CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT: Self
pub const CLUSTER_OLD_VERSION: Self
pub const CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME: Self
pub const CLUSTER_NO_NET_ADAPTERS: Self
pub const CLUSTER_POISONED: Self
pub const CLUSTER_GROUP_MOVING: Self
pub const CLUSTER_RESOURCE_TYPE_BUSY: Self
pub const RESOURCE_CALL_TIMED_OUT: Self
pub const INVALID_CLUSTER_IPV6_ADDRESS: Self
pub const CLUSTER_INTERNAL_INVALID_FUNCTION: Self
pub const CLUSTER_PARAMETER_OUT_OF_BOUNDS: Self
pub const CLUSTER_PARTIAL_SEND: Self
pub const CLUSTER_REGISTRY_INVALID_FUNCTION: Self
pub const CLUSTER_INVALID_STRING_TERMINATION: Self
pub const CLUSTER_INVALID_STRING_FORMAT: Self
pub const CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS: Self
pub const CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS: Self
pub const CLUSTER_NULL_DATA: Self
pub const CLUSTER_PARTIAL_READ: Self
pub const CLUSTER_PARTIAL_WRITE: Self
pub const CLUSTER_CANT_DESERIALIZE_DATA: Self
pub const DEPENDENT_RESOURCE_PROPERTY_CONFLICT: Self
pub const CLUSTER_NO_QUORUM: Self
pub const CLUSTER_INVALID_IPV6_NETWORK: Self
pub const CLUSTER_INVALID_IPV6_TUNNEL_NETWORK: Self
pub const QUORUM_NOT_ALLOWED_IN_THIS_GROUP: Self
pub const DEPENDENCY_TREE_TOO_COMPLEX: Self
pub const EXCEPTION_IN_RESOURCE_CALL: Self
pub const CLUSTER_RHS_FAILED_INITIALIZATION: Self
pub const CLUSTER_NOT_INSTALLED: Self
pub const CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE: Self
pub const CLUSTER_MAX_NODES_IN_CLUSTER: Self
pub const CLUSTER_TOO_MANY_NODES: Self
pub const CLUSTER_OBJECT_ALREADY_USED: Self
pub const NONCORE_GROUPS_FOUND: Self
pub const FILE_SHARE_RESOURCE_CONFLICT: Self
pub const CLUSTER_EVICT_INVALID_REQUEST: Self
pub const CLUSTER_SINGLETON_RESOURCE: Self
pub const CLUSTER_GROUP_SINGLETON_RESOURCE: Self
pub const CLUSTER_RESOURCE_PROVIDER_FAILED: Self
pub const CLUSTER_RESOURCE_CONFIGURATION_ERROR: Self
pub const CLUSTER_GROUP_BUSY: Self
pub const CLUSTER_NOT_SHARED_VOLUME: Self
pub const CLUSTER_INVALID_SECURITY_DESCRIPTOR: Self
pub const CLUSTER_SHARED_VOLUMES_IN_USE: Self
pub const CLUSTER_USE_SHARED_VOLUMES_API: Self
pub const CLUSTER_BACKUP_IN_PROGRESS: Self
pub const NON_CSV_PATH: Self
pub const CSV_VOLUME_NOT_LOCAL: Self
pub const CLUSTER_WATCHDOG_TERMINATING: Self
pub const CLUSTER_RESOURCE_VETOED_MOVE_INCOMPATIBLE_NODES: Self
pub const CLUSTER_INVALID_NODE_WEIGHT: Self
pub const CLUSTER_RESOURCE_VETOED_CALL: Self
pub const RESMON_SYSTEM_RESOURCES_LACKING: Self
pub const CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_DESTINATION: Self
pub const CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_SOURCE: Self
pub const CLUSTER_GROUP_QUEUED: Self
pub const CLUSTER_RESOURCE_LOCKED_STATUS: Self
pub const CLUSTER_SHARED_VOLUME_FAILOVER_NOT_ALLOWED: Self
pub const CLUSTER_NODE_DRAIN_IN_PROGRESS: Self
pub const CLUSTER_DISK_NOT_CONNECTED: Self
pub const DISK_NOT_CSV_CAPABLE: Self
pub const RESOURCE_NOT_IN_AVAILABLE_STORAGE: Self
pub const CLUSTER_SHARED_VOLUME_REDIRECTED: Self
pub const CLUSTER_SHARED_VOLUME_NOT_REDIRECTED: Self
pub const CLUSTER_CANNOT_RETURN_PROPERTIES: Self
pub const CLUSTER_RESOURCE_CONTAINS_UNSUPPORTED_DIFF_AREA_FOR_SHARED_VOLUMES: Self
pub const CLUSTER_RESOURCE_IS_IN_MAINTENANCE_MODE: Self
pub const CLUSTER_AFFINITY_CONFLICT: Self
pub const CLUSTER_RESOURCE_IS_REPLICA_VIRTUAL_MACHINE: Self
pub const CLUSTER_UPGRADE_INCOMPATIBLE_VERSIONS: Self
pub const CLUSTER_UPGRADE_FIX_QUORUM_NOT_SUPPORTED: Self
pub const CLUSTER_UPGRADE_RESTART_REQUIRED: Self
pub const CLUSTER_UPGRADE_IN_PROGRESS: Self
pub const CLUSTER_UPGRADE_INCOMPLETE: Self
pub const CLUSTER_NODE_IN_GRACE_PERIOD: Self
pub const CLUSTER_CSV_IO_PAUSE_TIMEOUT: Self
pub const NODE_NOT_ACTIVE_CLUSTER_MEMBER: Self
pub const CLUSTER_RESOURCE_NOT_MONITORED: Self
pub const CLUSTER_RESOURCE_DOES_NOT_SUPPORT_UNMONITORED: Self
pub const CLUSTER_RESOURCE_IS_REPLICATED: Self
pub const CLUSTER_NODE_ISOLATED: Self
pub const CLUSTER_NODE_QUARANTINED: Self
pub const CLUSTER_DATABASE_UPDATE_CONDITION_FAILED: Self
pub const CLUSTER_SPACE_DEGRADED: Self
pub const CLUSTER_TOKEN_DELEGATION_NOT_SUPPORTED: Self
pub const CLUSTER_CSV_INVALID_HANDLE: Self
pub const CLUSTER_CSV_SUPPORTED_ONLY_ON_COORDINATOR: Self
pub const GROUPSET_NOT_AVAILABLE: Self
pub const GROUPSET_NOT_FOUND: Self
pub const GROUPSET_CANT_PROVIDE: Self
pub const CLUSTER_FAULT_DOMAIN_PARENT_NOT_FOUND: Self
pub const CLUSTER_FAULT_DOMAIN_INVALID_HIERARCHY: Self
pub const CLUSTER_FAULT_DOMAIN_FAILED_S2D_VALIDATION: Self
pub const CLUSTER_FAULT_DOMAIN_S2D_CONNECTIVITY_LOSS: Self
pub const CLUSTER_INVALID_INFRASTRUCTURE_FILESERVER_NAME: Self
pub const CLUSTERSET_MANAGEMENT_CLUSTER_UNREACHABLE: Self
pub const ENCRYPTION_FAILED: Self
pub const DECRYPTION_FAILED: Self
pub const FILE_ENCRYPTED: Self
pub const NO_RECOVERY_POLICY: Self
pub const NO_EFS: Self
pub const WRONG_EFS: Self
pub const NO_USER_KEYS: Self
pub const FILE_NOT_ENCRYPTED: Self
pub const NOT_EXPORT_FORMAT: Self
pub const FILE_READ_ONLY: Self
pub const DIR_EFS_DISALLOWED: Self
pub const EFS_SERVER_NOT_TRUSTED: Self
pub const BAD_RECOVERY_POLICY: Self
pub const EFS_ALG_BLOB_TOO_BIG: Self
pub const VOLUME_NOT_SUPPORT_EFS: Self
pub const EFS_DISABLED: Self
pub const EFS_VERSION_NOT_SUPPORT: Self
pub const CS_ENCRYPTION_INVALID_SERVER_RESPONSE: Self
pub const CS_ENCRYPTION_UNSUPPORTED_SERVER: Self
pub const CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE: Self
pub const CS_ENCRYPTION_NEW_ENCRYPTED_FILE: Self
pub const CS_ENCRYPTION_FILE_NOT_CSE: Self
pub const ENCRYPTION_POLICY_DENIES_OPERATION: Self
pub const WIP_ENCRYPTION_FAILED: Self
pub const NO_BROWSER_SERVERS_FOUND: Self
pub const LOG_SECTOR_INVALID: Self
pub const LOG_SECTOR_PARITY_INVALID: Self
pub const LOG_SECTOR_REMAPPED: Self
pub const LOG_BLOCK_INCOMPLETE: Self
pub const LOG_INVALID_RANGE: Self
pub const LOG_BLOCKS_EXHAUSTED: Self
pub const LOG_READ_CONTEXT_INVALID: Self
pub const LOG_RESTART_INVALID: Self
pub const LOG_BLOCK_VERSION: Self
pub const LOG_BLOCK_INVALID: Self
pub const LOG_READ_MODE_INVALID: Self
pub const LOG_NO_RESTART: Self
pub const LOG_METADATA_CORRUPT: Self
pub const LOG_METADATA_INVALID: Self
pub const LOG_METADATA_INCONSISTENT: Self
pub const LOG_RESERVATION_INVALID: Self
pub const LOG_CANT_DELETE: Self
pub const LOG_CONTAINER_LIMIT_EXCEEDED: Self
pub const LOG_START_OF_LOG: Self
pub const LOG_POLICY_ALREADY_INSTALLED: Self
pub const LOG_POLICY_NOT_INSTALLED: Self
pub const LOG_POLICY_INVALID: Self
pub const LOG_POLICY_CONFLICT: Self
pub const LOG_PINNED_ARCHIVE_TAIL: Self
pub const LOG_RECORD_NONEXISTENT: Self
pub const LOG_RECORDS_RESERVED_INVALID: Self
pub const LOG_SPACE_RESERVED_INVALID: Self
pub const LOG_TAIL_INVALID: Self
pub const LOG_FULL: Self
pub const COULD_NOT_RESIZE_LOG: Self
pub const LOG_MULTIPLEXED: Self
pub const LOG_DEDICATED: Self
pub const LOG_ARCHIVE_NOT_IN_PROGRESS: Self
pub const LOG_ARCHIVE_IN_PROGRESS: Self
pub const LOG_EPHEMERAL: Self
pub const LOG_NOT_ENOUGH_CONTAINERS: Self
pub const LOG_CLIENT_ALREADY_REGISTERED: Self
pub const LOG_CLIENT_NOT_REGISTERED: Self
pub const LOG_FULL_HANDLER_IN_PROGRESS: Self
pub const LOG_CONTAINER_READ_FAILED: Self
pub const LOG_CONTAINER_WRITE_FAILED: Self
pub const LOG_CONTAINER_OPEN_FAILED: Self
pub const LOG_CONTAINER_STATE_INVALID: Self
pub const LOG_STATE_INVALID: Self
pub const LOG_PINNED: Self
pub const LOG_METADATA_FLUSH_FAILED: Self
pub const LOG_INCONSISTENT_SECURITY: Self
pub const LOG_APPENDED_FLUSH_FAILED: Self
pub const LOG_PINNED_RESERVATION: Self
pub const INVALID_TRANSACTION: Self
pub const TRANSACTION_NOT_ACTIVE: Self
pub const TRANSACTION_REQUEST_NOT_VALID: Self
pub const TRANSACTION_NOT_REQUESTED: Self
pub const TRANSACTION_ALREADY_ABORTED: Self
pub const TRANSACTION_ALREADY_COMMITTED: Self
pub const TM_INITIALIZATION_FAILED: Self
pub const RESOURCEMANAGER_READ_ONLY: Self
pub const TRANSACTION_NOT_JOINED: Self
pub const TRANSACTION_SUPERIOR_EXISTS: Self
pub const CRM_PROTOCOL_ALREADY_EXISTS: Self
pub const TRANSACTION_PROPAGATION_FAILED: Self
pub const CRM_PROTOCOL_NOT_FOUND: Self
pub const TRANSACTION_INVALID_MARSHALL_BUFFER: Self
pub const CURRENT_TRANSACTION_NOT_VALID: Self
pub const TRANSACTION_NOT_FOUND: Self
pub const RESOURCEMANAGER_NOT_FOUND: Self
pub const ENLISTMENT_NOT_FOUND: Self
pub const TRANSACTIONMANAGER_NOT_FOUND: Self
pub const TRANSACTIONMANAGER_NOT_ONLINE: Self
pub const TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION: Self
pub const TRANSACTION_NOT_ROOT: Self
pub const TRANSACTION_OBJECT_EXPIRED: Self
pub const TRANSACTION_RESPONSE_NOT_ENLISTED: Self
pub const TRANSACTION_RECORD_TOO_LONG: Self
pub const IMPLICIT_TRANSACTION_NOT_SUPPORTED: Self
pub const TRANSACTION_INTEGRITY_VIOLATED: Self
pub const TRANSACTIONMANAGER_IDENTITY_MISMATCH: Self
pub const RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT: Self
pub const TRANSACTION_MUST_WRITETHROUGH: Self
pub const TRANSACTION_NO_SUPERIOR: Self
pub const HEURISTIC_DAMAGE_POSSIBLE: Self
pub const TRANSACTIONAL_CONFLICT: Self
pub const RM_NOT_ACTIVE: Self
pub const RM_METADATA_CORRUPT: Self
pub const DIRECTORY_NOT_RM: Self
pub const TRANSACTIONS_UNSUPPORTED_REMOTE: Self
pub const LOG_RESIZE_INVALID_SIZE: Self
pub const OBJECT_NO_LONGER_EXISTS: Self
pub const STREAM_MINIVERSION_NOT_FOUND: Self
pub const STREAM_MINIVERSION_NOT_VALID: Self
pub const MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION: Self
pub const CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT: Self
pub const CANT_CREATE_MORE_STREAM_MINIVERSIONS: Self
pub const REMOTE_FILE_VERSION_MISMATCH: Self
pub const HANDLE_NO_LONGER_VALID: Self
pub const NO_TXF_METADATA: Self
pub const LOG_CORRUPTION_DETECTED: Self
pub const CANT_RECOVER_WITH_HANDLE_OPEN: Self
pub const RM_DISCONNECTED: Self
pub const ENLISTMENT_NOT_SUPERIOR: Self
pub const RECOVERY_NOT_NEEDED: Self
pub const RM_ALREADY_STARTED: Self
pub const FILE_IDENTITY_NOT_PERSISTENT: Self
pub const CANT_BREAK_TRANSACTIONAL_DEPENDENCY: Self
pub const CANT_CROSS_RM_BOUNDARY: Self
pub const TXF_DIR_NOT_EMPTY: Self
pub const INDOUBT_TRANSACTIONS_EXIST: Self
pub const TM_VOLATILE: Self
pub const ROLLBACK_TIMER_EXPIRED: Self
pub const TXF_ATTRIBUTE_CORRUPT: Self
pub const EFS_NOT_ALLOWED_IN_TRANSACTION: Self
pub const TRANSACTIONAL_OPEN_NOT_ALLOWED: Self
pub const LOG_GROWTH_FAILED: Self
pub const TRANSACTED_MAPPING_UNSUPPORTED_REMOTE: Self
pub const TXF_METADATA_ALREADY_PRESENT: Self
pub const TRANSACTION_SCOPE_CALLBACKS_NOT_SET: Self
pub const TRANSACTION_REQUIRED_PROMOTION: Self
pub const CANNOT_EXECUTE_FILE_IN_TRANSACTION: Self
pub const TRANSACTIONS_NOT_FROZEN: Self
pub const TRANSACTION_FREEZE_IN_PROGRESS: Self
pub const NOT_SNAPSHOT_VOLUME: Self
pub const NO_SAVEPOINT_WITH_OPEN_FILES: Self
pub const DATA_LOST_REPAIR: Self
pub const SPARSE_NOT_ALLOWED_IN_TRANSACTION: Self
pub const TM_IDENTITY_MISMATCH: Self
pub const FLOATED_SECTION: Self
pub const CANNOT_ACCEPT_TRANSACTED_WORK: Self
pub const CANNOT_ABORT_TRANSACTIONS: Self
pub const BAD_CLUSTERS: Self
pub const COMPRESSION_NOT_ALLOWED_IN_TRANSACTION: Self
pub const VOLUME_DIRTY: Self
pub const NO_LINK_TRACKING_IN_TRANSACTION: Self
pub const OPERATION_NOT_SUPPORTED_IN_TRANSACTION: Self
pub const EXPIRED_HANDLE: Self
pub const TRANSACTION_NOT_ENLISTED: Self
pub const CTX_WINSTATION_NAME_INVALID: Self
pub const CTX_INVALID_PD: Self
pub const CTX_PD_NOT_FOUND: Self
pub const CTX_WD_NOT_FOUND: Self
pub const CTX_CANNOT_MAKE_EVENTLOG_ENTRY: Self
pub const CTX_SERVICE_NAME_COLLISION: Self
pub const CTX_CLOSE_PENDING: Self
pub const CTX_NO_OUTBUF: Self
pub const CTX_MODEM_INF_NOT_FOUND: Self
pub const CTX_INVALID_MODEMNAME: Self
pub const CTX_MODEM_RESPONSE_ERROR: Self
pub const CTX_MODEM_RESPONSE_TIMEOUT: Self
pub const CTX_MODEM_RESPONSE_NO_CARRIER: Self
pub const CTX_MODEM_RESPONSE_NO_DIALTONE: Self
pub const CTX_MODEM_RESPONSE_BUSY: Self
pub const CTX_MODEM_RESPONSE_VOICE: Self
pub const CTX_TD_ERROR: Self
pub const CTX_WINSTATION_NOT_FOUND: Self
pub const CTX_WINSTATION_ALREADY_EXISTS: Self
pub const CTX_WINSTATION_BUSY: Self
pub const CTX_BAD_VIDEO_MODE: Self
pub const CTX_GRAPHICS_INVALID: Self
pub const CTX_LOGON_DISABLED: Self
pub const CTX_NOT_CONSOLE: Self
pub const CTX_CLIENT_QUERY_TIMEOUT: Self
pub const CTX_CONSOLE_DISCONNECT: Self
pub const CTX_CONSOLE_CONNECT: Self
pub const CTX_SHADOW_DENIED: Self
pub const CTX_WINSTATION_ACCESS_DENIED: Self
pub const CTX_INVALID_WD: Self
pub const CTX_SHADOW_INVALID: Self
pub const CTX_SHADOW_DISABLED: Self
pub const CTX_CLIENT_LICENSE_IN_USE: Self
pub const CTX_CLIENT_LICENSE_NOT_SET: Self
pub const CTX_LICENSE_NOT_AVAILABLE: Self
pub const CTX_LICENSE_CLIENT_INVALID: Self
pub const CTX_LICENSE_EXPIRED: Self
pub const CTX_SHADOW_NOT_RUNNING: Self
pub const CTX_SHADOW_ENDED_BY_MODE_CHANGE: Self
pub const ACTIVATION_COUNT_EXCEEDED: Self
pub const CTX_WINSTATIONS_DISABLED: Self
pub const CTX_ENCRYPTION_LEVEL_REQUIRED: Self
pub const CTX_SESSION_IN_USE: Self
pub const CTX_NO_FORCE_LOGOFF: Self
pub const CTX_ACCOUNT_RESTRICTION: Self
pub const RDP_PROTOCOL_ERROR: Self
pub const CTX_CDM_CONNECT: Self
pub const CTX_CDM_DISCONNECT: Self
pub const CTX_SECURITY_LAYER_ERROR: Self
pub const TS_INCOMPATIBLE_SESSIONS: Self
pub const TS_VIDEO_SUBSYSTEM_ERROR: Self
pub const DS_NOT_INSTALLED: Self
pub const DS_MEMBERSHIP_EVALUATED_LOCALLY: Self
pub const DS_NO_ATTRIBUTE_OR_VALUE: Self
pub const DS_INVALID_ATTRIBUTE_SYNTAX: Self
pub const DS_ATTRIBUTE_TYPE_UNDEFINED: Self
pub const DS_ATTRIBUTE_OR_VALUE_EXISTS: Self
pub const DS_BUSY: Self
pub const DS_UNAVAILABLE: Self
pub const DS_NO_RIDS_ALLOCATED: Self
pub const DS_NO_MORE_RIDS: Self
pub const DS_INCORRECT_ROLE_OWNER: Self
pub const DS_RIDMGR_INIT_ERROR: Self
pub const DS_OBJ_CLASS_VIOLATION: Self
pub const DS_CANT_ON_NON_LEAF: Self
pub const DS_CANT_ON_RDN: Self
pub const DS_CANT_MOD_OBJ_CLASS: Self
pub const DS_CROSS_DOM_MOVE_ERROR: Self
pub const DS_GC_NOT_AVAILABLE: Self
pub const SHARED_POLICY: Self
pub const POLICY_OBJECT_NOT_FOUND: Self
pub const POLICY_ONLY_IN_DS: Self
pub const PROMOTION_ACTIVE: Self
pub const NO_PROMOTION_ACTIVE: Self
pub const DS_OPERATIONS_ERROR: Self
pub const DS_PROTOCOL_ERROR: Self
pub const DS_TIMELIMIT_EXCEEDED: Self
pub const DS_SIZELIMIT_EXCEEDED: Self
pub const DS_ADMIN_LIMIT_EXCEEDED: Self
pub const DS_COMPARE_FALSE: Self
pub const DS_COMPARE_TRUE: Self
pub const DS_AUTH_METHOD_NOT_SUPPORTED: Self
pub const DS_STRONG_AUTH_REQUIRED: Self
pub const DS_INAPPROPRIATE_AUTH: Self
pub const DS_AUTH_UNKNOWN: Self
pub const DS_REFERRAL: Self
pub const DS_UNAVAILABLE_CRIT_EXTENSION: Self
pub const DS_CONFIDENTIALITY_REQUIRED: Self
pub const DS_INAPPROPRIATE_MATCHING: Self
pub const DS_CONSTRAINT_VIOLATION: Self
pub const DS_NO_SUCH_OBJECT: Self
pub const DS_ALIAS_PROBLEM: Self
pub const DS_INVALID_DN_SYNTAX: Self
pub const DS_IS_LEAF: Self
pub const DS_ALIAS_DEREF_PROBLEM: Self
pub const DS_UNWILLING_TO_PERFORM: Self
pub const DS_LOOP_DETECT: Self
pub const DS_NAMING_VIOLATION: Self
pub const DS_OBJECT_RESULTS_TOO_LARGE: Self
pub const DS_AFFECTS_MULTIPLE_DSAS: Self
pub const DS_SERVER_DOWN: Self
pub const DS_LOCAL_ERROR: Self
pub const DS_ENCODING_ERROR: Self
pub const DS_DECODING_ERROR: Self
pub const DS_FILTER_UNKNOWN: Self
pub const DS_PARAM_ERROR: Self
pub const DS_NOT_SUPPORTED: Self
pub const DS_NO_RESULTS_RETURNED: Self
pub const DS_CONTROL_NOT_FOUND: Self
pub const DS_CLIENT_LOOP: Self
pub const DS_REFERRAL_LIMIT_EXCEEDED: Self
pub const DS_SORT_CONTROL_MISSING: Self
pub const DS_OFFSET_RANGE_ERROR: Self
pub const DS_RIDMGR_DISABLED: Self
pub const DS_ROOT_MUST_BE_NC: Self
pub const DS_ADD_REPLICA_INHIBITED: Self
pub const DS_ATT_NOT_DEF_IN_SCHEMA: Self
pub const DS_MAX_OBJ_SIZE_EXCEEDED: Self
pub const DS_OBJ_STRING_NAME_EXISTS: Self
pub const DS_NO_RDN_DEFINED_IN_SCHEMA: Self
pub const DS_RDN_DOESNT_MATCH_SCHEMA: Self
pub const DS_NO_REQUESTED_ATTS_FOUND: Self
pub const DS_USER_BUFFER_TO_SMALL: Self
pub const DS_ATT_IS_NOT_ON_OBJ: Self
pub const DS_ILLEGAL_MOD_OPERATION: Self
pub const DS_OBJ_TOO_LARGE: Self
pub const DS_BAD_INSTANCE_TYPE: Self
pub const DS_MASTERDSA_REQUIRED: Self
pub const DS_OBJECT_CLASS_REQUIRED: Self
pub const DS_MISSING_REQUIRED_ATT: Self
pub const DS_ATT_NOT_DEF_FOR_CLASS: Self
pub const DS_ATT_ALREADY_EXISTS: Self
pub const DS_CANT_ADD_ATT_VALUES: Self
pub const DS_SINGLE_VALUE_CONSTRAINT: Self
pub const DS_RANGE_CONSTRAINT: Self
pub const DS_ATT_VAL_ALREADY_EXISTS: Self
pub const DS_CANT_REM_MISSING_ATT: Self
pub const DS_CANT_REM_MISSING_ATT_VAL: Self
pub const DS_ROOT_CANT_BE_SUBREF: Self
pub const DS_NO_CHAINING: Self
pub const DS_NO_CHAINED_EVAL: Self
pub const DS_NO_PARENT_OBJECT: Self
pub const DS_PARENT_IS_AN_ALIAS: Self
pub const DS_CANT_MIX_MASTER_AND_REPS: Self
pub const DS_CHILDREN_EXIST: Self
pub const DS_OBJ_NOT_FOUND: Self
pub const DS_ALIASED_OBJ_MISSING: Self
pub const DS_BAD_NAME_SYNTAX: Self
pub const DS_ALIAS_POINTS_TO_ALIAS: Self
pub const DS_CANT_DEREF_ALIAS: Self
pub const DS_OUT_OF_SCOPE: Self
pub const DS_OBJECT_BEING_REMOVED: Self
pub const DS_CANT_DELETE_DSA_OBJ: Self
pub const DS_GENERIC_ERROR: Self
pub const DS_DSA_MUST_BE_INT_MASTER: Self
pub const DS_CLASS_NOT_DSA: Self
pub const DS_INSUFF_ACCESS_RIGHTS: Self
pub const DS_ILLEGAL_SUPERIOR: Self
pub const DS_ATTRIBUTE_OWNED_BY_SAM: Self
pub const DS_NAME_TOO_MANY_PARTS: Self
pub const DS_NAME_TOO_LONG: Self
pub const DS_NAME_VALUE_TOO_LONG: Self
pub const DS_NAME_UNPARSEABLE: Self
pub const DS_NAME_TYPE_UNKNOWN: Self
pub const DS_NOT_AN_OBJECT: Self
pub const DS_SEC_DESC_TOO_SHORT: Self
pub const DS_SEC_DESC_INVALID: Self
pub const DS_NO_DELETED_NAME: Self
pub const DS_SUBREF_MUST_HAVE_PARENT: Self
pub const DS_NCNAME_MUST_BE_NC: Self
pub const DS_CANT_ADD_SYSTEM_ONLY: Self
pub const DS_CLASS_MUST_BE_CONCRETE: Self
pub const DS_INVALID_DMD: Self
pub const DS_OBJ_GUID_EXISTS: Self
pub const DS_NOT_ON_BACKLINK: Self
pub const DS_NO_CROSSREF_FOR_NC: Self
pub const DS_SHUTTING_DOWN: Self
pub const DS_UNKNOWN_OPERATION: Self
pub const DS_INVALID_ROLE_OWNER: Self
pub const DS_COULDNT_CONTACT_FSMO: Self
pub const DS_CROSS_NC_DN_RENAME: Self
pub const DS_CANT_MOD_SYSTEM_ONLY: Self
pub const DS_REPLICATOR_ONLY: Self
pub const DS_OBJ_CLASS_NOT_DEFINED: Self
pub const DS_OBJ_CLASS_NOT_SUBCLASS: Self
pub const DS_NAME_REFERENCE_INVALID: Self
pub const DS_CROSS_REF_EXISTS: Self
pub const DS_CANT_DEL_MASTER_CROSSREF: Self
pub const DS_SUBTREE_NOTIFY_NOT_NC_HEAD: Self
pub const DS_NOTIFY_FILTER_TOO_COMPLEX: Self
pub const DS_DUP_RDN: Self
pub const DS_DUP_OID: Self
pub const DS_DUP_MAPI_ID: Self
pub const DS_DUP_SCHEMA_ID_GUID: Self
pub const DS_DUP_LDAP_DISPLAY_NAME: Self
pub const DS_SEMANTIC_ATT_TEST: Self
pub const DS_SYNTAX_MISMATCH: Self
pub const DS_EXISTS_IN_MUST_HAVE: Self
pub const DS_EXISTS_IN_MAY_HAVE: Self
pub const DS_NONEXISTENT_MAY_HAVE: Self
pub const DS_NONEXISTENT_MUST_HAVE: Self
pub const DS_AUX_CLS_TEST_FAIL: Self
pub const DS_NONEXISTENT_POSS_SUP: Self
pub const DS_SUB_CLS_TEST_FAIL: Self
pub const DS_BAD_RDN_ATT_ID_SYNTAX: Self
pub const DS_EXISTS_IN_AUX_CLS: Self
pub const DS_EXISTS_IN_SUB_CLS: Self
pub const DS_EXISTS_IN_POSS_SUP: Self
pub const DS_RECALCSCHEMA_FAILED: Self
pub const DS_TREE_DELETE_NOT_FINISHED: Self
pub const DS_CANT_DELETE: Self
pub const DS_ATT_SCHEMA_REQ_ID: Self
pub const DS_BAD_ATT_SCHEMA_SYNTAX: Self
pub const DS_CANT_CACHE_ATT: Self
pub const DS_CANT_CACHE_CLASS: Self
pub const DS_CANT_REMOVE_ATT_CACHE: Self
pub const DS_CANT_REMOVE_CLASS_CACHE: Self
pub const DS_CANT_RETRIEVE_DN: Self
pub const DS_MISSING_SUPREF: Self
pub const DS_CANT_RETRIEVE_INSTANCE: Self
pub const DS_CODE_INCONSISTENCY: Self
pub const DS_DATABASE_ERROR: Self
pub const DS_GOVERNSID_MISSING: Self
pub const DS_MISSING_EXPECTED_ATT: Self
pub const DS_NCNAME_MISSING_CR_REF: Self
pub const DS_SECURITY_CHECKING_ERROR: Self
pub const DS_SCHEMA_NOT_LOADED: Self
pub const DS_SCHEMA_ALLOC_FAILED: Self
pub const DS_ATT_SCHEMA_REQ_SYNTAX: Self
pub const DS_GCVERIFY_ERROR: Self
pub const DS_DRA_SCHEMA_MISMATCH: Self
pub const DS_CANT_FIND_DSA_OBJ: Self
pub const DS_CANT_FIND_EXPECTED_NC: Self
pub const DS_CANT_FIND_NC_IN_CACHE: Self
pub const DS_CANT_RETRIEVE_CHILD: Self
pub const DS_SECURITY_ILLEGAL_MODIFY: Self
pub const DS_CANT_REPLACE_HIDDEN_REC: Self
pub const DS_BAD_HIERARCHY_FILE: Self
pub const DS_BUILD_HIERARCHY_TABLE_FAILED: Self
pub const DS_CONFIG_PARAM_MISSING: Self
pub const DS_COUNTING_AB_INDICES_FAILED: Self
pub const DS_HIERARCHY_TABLE_MALLOC_FAILED: Self
pub const DS_INTERNAL_FAILURE: Self
pub const DS_UNKNOWN_ERROR: Self
pub const DS_ROOT_REQUIRES_CLASS_TOP: Self
pub const DS_REFUSING_FSMO_ROLES: Self
pub const DS_MISSING_FSMO_SETTINGS: Self
pub const DS_UNABLE_TO_SURRENDER_ROLES: Self
pub const DS_DRA_GENERIC: Self
pub const DS_DRA_INVALID_PARAMETER: Self
pub const DS_DRA_BUSY: Self
pub const DS_DRA_BAD_DN: Self
pub const DS_DRA_BAD_NC: Self
pub const DS_DRA_DN_EXISTS: Self
pub const DS_DRA_INTERNAL_ERROR: Self
pub const DS_DRA_INCONSISTENT_DIT: Self
pub const DS_DRA_CONNECTION_FAILED: Self
pub const DS_DRA_BAD_INSTANCE_TYPE: Self
pub const DS_DRA_OUT_OF_MEM: Self
pub const DS_DRA_MAIL_PROBLEM: Self
pub const DS_DRA_REF_ALREADY_EXISTS: Self
pub const DS_DRA_REF_NOT_FOUND: Self
pub const DS_DRA_OBJ_IS_REP_SOURCE: Self
pub const DS_DRA_DB_ERROR: Self
pub const DS_DRA_NO_REPLICA: Self
pub const DS_DRA_ACCESS_DENIED: Self
pub const DS_DRA_NOT_SUPPORTED: Self
pub const DS_DRA_RPC_CANCELLED: Self
pub const DS_DRA_SOURCE_DISABLED: Self
pub const DS_DRA_SINK_DISABLED: Self
pub const DS_DRA_NAME_COLLISION: Self
pub const DS_DRA_SOURCE_REINSTALLED: Self
pub const DS_DRA_MISSING_PARENT: Self
pub const DS_DRA_PREEMPTED: Self
pub const DS_DRA_ABANDON_SYNC: Self
pub const DS_DRA_SHUTDOWN: Self
pub const DS_DRA_INCOMPATIBLE_PARTIAL_SET: Self
pub const DS_DRA_SOURCE_IS_PARTIAL_REPLICA: Self
pub const DS_DRA_EXTN_CONNECTION_FAILED: Self
pub const DS_INSTALL_SCHEMA_MISMATCH: Self
pub const DS_DUP_LINK_ID: Self
pub const DS_NAME_ERROR_RESOLVING: Self
pub const DS_NAME_ERROR_NOT_FOUND: Self
pub const DS_NAME_ERROR_NOT_UNIQUE: Self
pub const DS_NAME_ERROR_NO_MAPPING: Self
pub const DS_NAME_ERROR_DOMAIN_ONLY: Self
pub const DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING: Self
pub const DS_CONSTRUCTED_ATT_MOD: Self
pub const DS_WRONG_OM_OBJ_CLASS: Self
pub const DS_DRA_REPL_PENDING: Self
pub const DS_DS_REQUIRED: Self
pub const DS_INVALID_LDAP_DISPLAY_NAME: Self
pub const DS_NON_BASE_SEARCH: Self
pub const DS_CANT_RETRIEVE_ATTS: Self
pub const DS_BACKLINK_WITHOUT_LINK: Self
pub const DS_EPOCH_MISMATCH: Self
pub const DS_SRC_NAME_MISMATCH: Self
pub const DS_SRC_AND_DST_NC_IDENTICAL: Self
pub const DS_DST_NC_MISMATCH: Self
pub const DS_NOT_AUTHORITIVE_FOR_DST_NC: Self
pub const DS_SRC_GUID_MISMATCH: Self
pub const DS_CANT_MOVE_DELETED_OBJECT: Self
pub const DS_PDC_OPERATION_IN_PROGRESS: Self
pub const DS_CROSS_DOMAIN_CLEANUP_REQD: Self
pub const DS_ILLEGAL_XDOM_MOVE_OPERATION: Self
pub const DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS: Self
pub const DS_NC_MUST_HAVE_NC_PARENT: Self
pub const DS_CR_IMPOSSIBLE_TO_VALIDATE: Self
pub const DS_DST_DOMAIN_NOT_NATIVE: Self
pub const DS_MISSING_INFRASTRUCTURE_CONTAINER: Self
pub const DS_CANT_MOVE_ACCOUNT_GROUP: Self
pub const DS_CANT_MOVE_RESOURCE_GROUP: Self
pub const DS_INVALID_SEARCH_FLAG: Self
pub const DS_NO_TREE_DELETE_ABOVE_NC: Self
pub const DS_COULDNT_LOCK_TREE_FOR_DELETE: Self
pub const DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE: Self
pub const DS_SAM_INIT_FAILURE: Self
pub const DS_SENSITIVE_GROUP_VIOLATION: Self
pub const DS_CANT_MOD_PRIMARYGROUPID: Self
pub const DS_ILLEGAL_BASE_SCHEMA_MOD: Self
pub const DS_NONSAFE_SCHEMA_CHANGE: Self
pub const DS_SCHEMA_UPDATE_DISALLOWED: Self
pub const DS_CANT_CREATE_UNDER_SCHEMA: Self
pub const DS_INSTALL_NO_SRC_SCH_VERSION: Self
pub const DS_INSTALL_NO_SCH_VERSION_IN_INIFILE: Self
pub const DS_INVALID_GROUP_TYPE: Self
pub const DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN: Self
pub const DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN: Self
pub const DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER: Self
pub const DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER: Self
pub const DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER: Self
pub const DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER: Self
pub const DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER: Self
pub const DS_HAVE_PRIMARY_MEMBERS: Self
pub const DS_STRING_SD_CONVERSION_FAILED: Self
pub const DS_NAMING_MASTER_GC: Self
pub const DS_DNS_LOOKUP_FAILURE: Self
pub const DS_COULDNT_UPDATE_SPNS: Self
pub const DS_CANT_RETRIEVE_SD: Self
pub const DS_KEY_NOT_UNIQUE: Self
pub const DS_WRONG_LINKED_ATT_SYNTAX: Self
pub const DS_SAM_NEED_BOOTKEY_PASSWORD: Self
pub const DS_SAM_NEED_BOOTKEY_FLOPPY: Self
pub const DS_CANT_START: Self
pub const DS_INIT_FAILURE: Self
pub const DS_NO_PKT_PRIVACY_ON_CONNECTION: Self
pub const DS_SOURCE_DOMAIN_IN_FOREST: Self
pub const DS_DESTINATION_DOMAIN_NOT_IN_FOREST: Self
pub const DS_DESTINATION_AUDITING_NOT_ENABLED: Self
pub const DS_CANT_FIND_DC_FOR_SRC_DOMAIN: Self
pub const DS_SRC_OBJ_NOT_GROUP_OR_USER: Self
pub const DS_SRC_SID_EXISTS_IN_FOREST: Self
pub const DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH: Self
pub const SAM_INIT_FAILURE: Self
pub const DS_DRA_SCHEMA_INFO_SHIP: Self
pub const DS_DRA_SCHEMA_CONFLICT: Self
pub const DS_DRA_EARLIER_SCHEMA_CONFLICT: Self
pub const DS_DRA_OBJ_NC_MISMATCH: Self
pub const DS_NC_STILL_HAS_DSAS: Self
pub const DS_GC_REQUIRED: Self
pub const DS_LOCAL_MEMBER_OF_LOCAL_ONLY: Self
pub const DS_NO_FPO_IN_UNIVERSAL_GROUPS: Self
pub const DS_CANT_ADD_TO_GC: Self
pub const DS_NO_CHECKPOINT_WITH_PDC: Self
pub const DS_SOURCE_AUDITING_NOT_ENABLED: Self
pub const DS_CANT_CREATE_IN_NONDOMAIN_NC: Self
pub const DS_INVALID_NAME_FOR_SPN: Self
pub const DS_FILTER_USES_CONTRUCTED_ATTRS: Self
pub const DS_UNICODEPWD_NOT_IN_QUOTES: Self
pub const DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED: Self
pub const DS_MUST_BE_RUN_ON_DST_DC: Self
pub const DS_SRC_DC_MUST_BE_SP4_OR_GREATER: Self
pub const DS_CANT_TREE_DELETE_CRITICAL_OBJ: Self
pub const DS_INIT_FAILURE_CONSOLE: Self
pub const DS_SAM_INIT_FAILURE_CONSOLE: Self
pub const DS_FOREST_VERSION_TOO_HIGH: Self
pub const DS_DOMAIN_VERSION_TOO_HIGH: Self
pub const DS_FOREST_VERSION_TOO_LOW: Self
pub const DS_DOMAIN_VERSION_TOO_LOW: Self
pub const DS_INCOMPATIBLE_VERSION: Self
pub const DS_LOW_DSA_VERSION: Self
pub const DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN: Self
pub const DS_NOT_SUPPORTED_SORT_ORDER: Self
pub const DS_NAME_NOT_UNIQUE: Self
pub const DS_MACHINE_ACCOUNT_CREATED_PRENT4: Self
pub const DS_OUT_OF_VERSION_STORE: Self
pub const DS_INCOMPATIBLE_CONTROLS_USED: Self
pub const DS_NO_REF_DOMAIN: Self
pub const DS_RESERVED_LINK_ID: Self
pub const DS_LINK_ID_NOT_AVAILABLE: Self
pub const DS_AG_CANT_HAVE_UNIVERSAL_MEMBER: Self
pub const DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE: Self
pub const DS_NO_OBJECT_MOVE_IN_SCHEMA_NC: Self
pub const DS_MODIFYDN_DISALLOWED_BY_FLAG: Self
pub const DS_MODIFYDN_WRONG_GRANDPARENT: Self
pub const DS_NAME_ERROR_TRUST_REFERRAL: Self
pub const NOT_SUPPORTED_ON_STANDARD_SERVER: Self
pub const DS_CANT_ACCESS_REMOTE_PART_OF_AD: Self
pub const DS_CR_IMPOSSIBLE_TO_VALIDATE_V2: Self
pub const DS_THREAD_LIMIT_EXCEEDED: Self
pub const DS_NOT_CLOSEST: Self
pub const DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF: Self
pub const DS_SINGLE_USER_MODE_FAILED: Self
pub const DS_NTDSCRIPT_SYNTAX_ERROR: Self
pub const DS_NTDSCRIPT_PROCESS_ERROR: Self
pub const DS_DIFFERENT_REPL_EPOCHS: Self
pub const DS_DRS_EXTENSIONS_CHANGED: Self
pub const DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR: Self
pub const DS_NO_MSDS_INTID: Self
pub const DS_DUP_MSDS_INTID: Self
pub const DS_EXISTS_IN_RDNATTID: Self
pub const DS_AUTHORIZATION_FAILED: Self
pub const DS_INVALID_SCRIPT: Self
pub const DS_REMOTE_CROSSREF_OP_FAILED: Self
pub const DS_CROSS_REF_BUSY: Self
pub const DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN: Self
pub const DS_CANT_DEMOTE_WITH_WRITEABLE_NC: Self
pub const DS_DUPLICATE_ID_FOUND: Self
pub const DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT: Self
pub const DS_GROUP_CONVERSION_ERROR: Self
pub const DS_CANT_MOVE_APP_BASIC_GROUP: Self
pub const DS_CANT_MOVE_APP_QUERY_GROUP: Self
pub const DS_ROLE_NOT_VERIFIED: Self
pub const DS_WKO_CONTAINER_CANNOT_BE_SPECIAL: Self
pub const DS_DOMAIN_RENAME_IN_PROGRESS: Self
pub const DS_EXISTING_AD_CHILD_NC: Self
pub const DS_REPL_LIFETIME_EXCEEDED: Self
pub const DS_DISALLOWED_IN_SYSTEM_CONTAINER: Self
pub const DS_LDAP_SEND_QUEUE_FULL: Self
pub const DS_DRA_OUT_SCHEDULE_WINDOW: Self
pub const DS_POLICY_NOT_KNOWN: Self
pub const NO_SITE_SETTINGS_OBJECT: Self
pub const NO_SECRETS: Self
pub const NO_WRITABLE_DC_FOUND: Self
pub const DS_NO_SERVER_OBJECT: Self
pub const DS_NO_NTDSA_OBJECT: Self
pub const DS_NON_ASQ_SEARCH: Self
pub const DS_AUDIT_FAILURE: Self
pub const DS_INVALID_SEARCH_FLAG_SUBTREE: Self
pub const DS_INVALID_SEARCH_FLAG_TUPLE: Self
pub const DS_HIERARCHY_TABLE_TOO_DEEP: Self
pub const DS_DRA_CORRUPT_UTD_VECTOR: Self
pub const DS_DRA_SECRETS_DENIED: Self
pub const DS_RESERVED_MAPI_ID: Self
pub const DS_MAPI_ID_NOT_AVAILABLE: Self
pub const DS_DRA_MISSING_KRBTGT_SECRET: Self
pub const DS_DOMAIN_NAME_EXISTS_IN_FOREST: Self
pub const DS_FLAT_NAME_EXISTS_IN_FOREST: Self
pub const INVALID_USER_PRINCIPAL_NAME: Self
pub const DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS: Self
pub const DS_OID_NOT_FOUND: Self
pub const DS_DRA_RECYCLED_TARGET: Self
pub const DS_DISALLOWED_NC_REDIRECT: Self
pub const DS_HIGH_ADLDS_FFL: Self
pub const DS_HIGH_DSA_VERSION: Self
pub const DS_LOW_ADLDS_FFL: Self
pub const DOMAIN_SID_SAME_AS_LOCAL_WORKSTATION: Self
pub const DS_UNDELETE_SAM_VALIDATION_FAILED: Self
pub const INCORRECT_ACCOUNT_TYPE: Self
pub const DS_SPN_VALUE_NOT_UNIQUE_IN_FOREST: Self
pub const DS_UPN_VALUE_NOT_UNIQUE_IN_FOREST: Self
pub const DS_MISSING_FOREST_TRUST: Self
pub const DS_VALUE_KEY_NOT_UNIQUE: Self
pub const IPSEC_QM_POLICY_EXISTS: Self
pub const IPSEC_QM_POLICY_NOT_FOUND: Self
pub const IPSEC_QM_POLICY_IN_USE: Self
pub const IPSEC_MM_POLICY_EXISTS: Self
pub const IPSEC_MM_POLICY_NOT_FOUND: Self
pub const IPSEC_MM_POLICY_IN_USE: Self
pub const IPSEC_MM_FILTER_EXISTS: Self
pub const IPSEC_MM_FILTER_NOT_FOUND: Self
pub const IPSEC_TRANSPORT_FILTER_EXISTS: Self
pub const IPSEC_TRANSPORT_FILTER_NOT_FOUND: Self
pub const IPSEC_MM_AUTH_EXISTS: Self
pub const IPSEC_MM_AUTH_NOT_FOUND: Self
pub const IPSEC_MM_AUTH_IN_USE: Self
pub const IPSEC_DEFAULT_MM_POLICY_NOT_FOUND: Self
pub const IPSEC_DEFAULT_MM_AUTH_NOT_FOUND: Self
pub const IPSEC_DEFAULT_QM_POLICY_NOT_FOUND: Self
pub const IPSEC_TUNNEL_FILTER_EXISTS: Self
pub const IPSEC_TUNNEL_FILTER_NOT_FOUND: Self
pub const IPSEC_MM_FILTER_PENDING_DELETION: Self
pub const IPSEC_TRANSPORT_FILTER_PENDING_DELETION: Self
pub const IPSEC_TUNNEL_FILTER_PENDING_DELETION: Self
pub const IPSEC_MM_POLICY_PENDING_DELETION: Self
pub const IPSEC_MM_AUTH_PENDING_DELETION: Self
pub const IPSEC_QM_POLICY_PENDING_DELETION: Self
pub const IPSEC_IKE_NEG_STATUS_BEGIN: Self
pub const IPSEC_IKE_AUTH_FAIL: Self
pub const IPSEC_IKE_ATTRIB_FAIL: Self
pub const IPSEC_IKE_NEGOTIATION_PENDING: Self
pub const IPSEC_IKE_GENERAL_PROCESSING_ERROR: Self
pub const IPSEC_IKE_TIMED_OUT: Self
pub const IPSEC_IKE_NO_CERT: Self
pub const IPSEC_IKE_SA_DELETED: Self
pub const IPSEC_IKE_SA_REAPED: Self
pub const IPSEC_IKE_MM_ACQUIRE_DROP: Self
pub const IPSEC_IKE_QM_ACQUIRE_DROP: Self
pub const IPSEC_IKE_QUEUE_DROP_MM: Self
pub const IPSEC_IKE_QUEUE_DROP_NO_MM: Self
pub const IPSEC_IKE_DROP_NO_RESPONSE: Self
pub const IPSEC_IKE_MM_DELAY_DROP: Self
pub const IPSEC_IKE_QM_DELAY_DROP: Self
pub const IPSEC_IKE_ERROR: Self
pub const IPSEC_IKE_CRL_FAILED: Self
pub const IPSEC_IKE_INVALID_KEY_USAGE: Self
pub const IPSEC_IKE_INVALID_CERT_TYPE: Self
pub const IPSEC_IKE_NO_PRIVATE_KEY: Self
pub const IPSEC_IKE_SIMULTANEOUS_REKEY: Self
pub const IPSEC_IKE_DH_FAIL: Self
pub const IPSEC_IKE_CRITICAL_PAYLOAD_NOT_RECOGNIZED: Self
pub const IPSEC_IKE_INVALID_HEADER: Self
pub const IPSEC_IKE_NO_POLICY: Self
pub const IPSEC_IKE_INVALID_SIGNATURE: Self
pub const IPSEC_IKE_KERBEROS_ERROR: Self
pub const IPSEC_IKE_NO_PUBLIC_KEY: Self
pub const IPSEC_IKE_PROCESS_ERR: Self
pub const IPSEC_IKE_PROCESS_ERR_SA: Self
pub const IPSEC_IKE_PROCESS_ERR_PROP: Self
pub const IPSEC_IKE_PROCESS_ERR_TRANS: Self
pub const IPSEC_IKE_PROCESS_ERR_KE: Self
pub const IPSEC_IKE_PROCESS_ERR_ID: Self
pub const IPSEC_IKE_PROCESS_ERR_CERT: Self
pub const IPSEC_IKE_PROCESS_ERR_CERT_REQ: Self
pub const IPSEC_IKE_PROCESS_ERR_HASH: Self
pub const IPSEC_IKE_PROCESS_ERR_SIG: Self
pub const IPSEC_IKE_PROCESS_ERR_NONCE: Self
pub const IPSEC_IKE_PROCESS_ERR_NOTIFY: Self
pub const IPSEC_IKE_PROCESS_ERR_DELETE: Self
pub const IPSEC_IKE_PROCESS_ERR_VENDOR: Self
pub const IPSEC_IKE_INVALID_PAYLOAD: Self
pub const IPSEC_IKE_LOAD_SOFT_SA: Self
pub const IPSEC_IKE_SOFT_SA_TORN_DOWN: Self
pub const IPSEC_IKE_INVALID_COOKIE: Self
pub const IPSEC_IKE_NO_PEER_CERT: Self
pub const IPSEC_IKE_PEER_CRL_FAILED: Self
pub const IPSEC_IKE_POLICY_CHANGE: Self
pub const IPSEC_IKE_NO_MM_POLICY: Self
pub const IPSEC_IKE_NOTCBPRIV: Self
pub const IPSEC_IKE_SECLOADFAIL: Self
pub const IPSEC_IKE_FAILSSPINIT: Self
pub const IPSEC_IKE_FAILQUERYSSP: Self
pub const IPSEC_IKE_SRVACQFAIL: Self
pub const IPSEC_IKE_SRVQUERYCRED: Self
pub const IPSEC_IKE_GETSPIFAIL: Self
pub const IPSEC_IKE_INVALID_FILTER: Self
pub const IPSEC_IKE_OUT_OF_MEMORY: Self
pub const IPSEC_IKE_ADD_UPDATE_KEY_FAILED: Self
pub const IPSEC_IKE_INVALID_POLICY: Self
pub const IPSEC_IKE_UNKNOWN_DOI: Self
pub const IPSEC_IKE_INVALID_SITUATION: Self
pub const IPSEC_IKE_DH_FAILURE: Self
pub const IPSEC_IKE_INVALID_GROUP: Self
pub const IPSEC_IKE_ENCRYPT: Self
pub const IPSEC_IKE_DECRYPT: Self
pub const IPSEC_IKE_POLICY_MATCH: Self
pub const IPSEC_IKE_UNSUPPORTED_ID: Self
pub const IPSEC_IKE_INVALID_HASH: Self
pub const IPSEC_IKE_INVALID_HASH_ALG: Self
pub const IPSEC_IKE_INVALID_HASH_SIZE: Self
pub const IPSEC_IKE_INVALID_ENCRYPT_ALG: Self
pub const IPSEC_IKE_INVALID_AUTH_ALG: Self
pub const IPSEC_IKE_INVALID_SIG: Self
pub const IPSEC_IKE_LOAD_FAILED: Self
pub const IPSEC_IKE_RPC_DELETE: Self
pub const IPSEC_IKE_BENIGN_REINIT: Self
pub const IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY: Self
pub const IPSEC_IKE_INVALID_MAJOR_VERSION: Self
pub const IPSEC_IKE_INVALID_CERT_KEYLEN: Self
pub const IPSEC_IKE_MM_LIMIT: Self
pub const IPSEC_IKE_NEGOTIATION_DISABLED: Self
pub const IPSEC_IKE_QM_LIMIT: Self
pub const IPSEC_IKE_MM_EXPIRED: Self
pub const IPSEC_IKE_PEER_MM_ASSUMED_INVALID: Self
pub const IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH: Self
pub const IPSEC_IKE_UNEXPECTED_MESSAGE_ID: Self
pub const IPSEC_IKE_INVALID_AUTH_PAYLOAD: Self
pub const IPSEC_IKE_DOS_COOKIE_SENT: Self
pub const IPSEC_IKE_SHUTTING_DOWN: Self
pub const IPSEC_IKE_CGA_AUTH_FAILED: Self
pub const IPSEC_IKE_PROCESS_ERR_NATOA: Self
pub const IPSEC_IKE_INVALID_MM_FOR_QM: Self
pub const IPSEC_IKE_QM_EXPIRED: Self
pub const IPSEC_IKE_TOO_MANY_FILTERS: Self
pub const IPSEC_IKE_NEG_STATUS_END: Self
pub const IPSEC_IKE_KILL_DUMMY_NAP_TUNNEL: Self
pub const IPSEC_IKE_INNER_IP_ASSIGNMENT_FAILURE: Self
pub const IPSEC_IKE_REQUIRE_CP_PAYLOAD_MISSING: Self
pub const IPSEC_KEY_MODULE_IMPERSONATION_NEGOTIATION_PENDING: Self
pub const IPSEC_IKE_COEXISTENCE_SUPPRESS: Self
pub const IPSEC_IKE_RATELIMIT_DROP: Self
pub const IPSEC_IKE_PEER_DOESNT_SUPPORT_MOBIKE: Self
pub const IPSEC_IKE_AUTHORIZATION_FAILURE: Self
pub const IPSEC_IKE_STRONG_CRED_AUTHORIZATION_FAILURE: Self
pub const IPSEC_IKE_AUTHORIZATION_FAILURE_WITH_OPTIONAL_RETRY: Self
pub const IPSEC_IKE_STRONG_CRED_AUTHORIZATION_AND_CERTMAP_FAILURE: Self
pub const IPSEC_IKE_NEG_STATUS_EXTENDED_END: Self
pub const IPSEC_BAD_SPI: Self
pub const IPSEC_SA_LIFETIME_EXPIRED: Self
pub const IPSEC_WRONG_SA: Self
pub const IPSEC_REPLAY_CHECK_FAILED: Self
pub const IPSEC_INVALID_PACKET: Self
pub const IPSEC_INTEGRITY_CHECK_FAILED: Self
pub const IPSEC_CLEAR_TEXT_DROP: Self
pub const IPSEC_AUTH_FIREWALL_DROP: Self
pub const IPSEC_THROTTLE_DROP: Self
pub const IPSEC_DOSP_BLOCK: Self
pub const IPSEC_DOSP_RECEIVED_MULTICAST: Self
pub const IPSEC_DOSP_INVALID_PACKET: Self
pub const IPSEC_DOSP_STATE_LOOKUP_FAILED: Self
pub const IPSEC_DOSP_MAX_ENTRIES: Self
pub const IPSEC_DOSP_KEYMOD_NOT_ALLOWED: Self
pub const IPSEC_DOSP_NOT_INSTALLED: Self
pub const IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES: Self
pub const SXS_SECTION_NOT_FOUND: Self
pub const SXS_CANT_GEN_ACTCTX: Self
pub const SXS_INVALID_ACTCTXDATA_FORMAT: Self
pub const SXS_ASSEMBLY_NOT_FOUND: Self
pub const SXS_MANIFEST_FORMAT_ERROR: Self
pub const SXS_MANIFEST_PARSE_ERROR: Self
pub const SXS_ACTIVATION_CONTEXT_DISABLED: Self
pub const SXS_KEY_NOT_FOUND: Self
pub const SXS_VERSION_CONFLICT: Self
pub const SXS_WRONG_SECTION_TYPE: Self
pub const SXS_THREAD_QUERIES_DISABLED: Self
pub const SXS_PROCESS_DEFAULT_ALREADY_SET: Self
pub const SXS_UNKNOWN_ENCODING_GROUP: Self
pub const SXS_UNKNOWN_ENCODING: Self
pub const SXS_INVALID_XML_NAMESPACE_URI: Self
pub const SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED: Self
pub const SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED: Self
pub const SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE: Self
pub const SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE: Self
pub const SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE: Self
pub const SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT: Self
pub const SXS_DUPLICATE_DLL_NAME: Self
pub const SXS_DUPLICATE_WINDOWCLASS_NAME: Self
pub const SXS_DUPLICATE_CLSID: Self
pub const SXS_DUPLICATE_IID: Self
pub const SXS_DUPLICATE_TLBID: Self
pub const SXS_DUPLICATE_PROGID: Self
pub const SXS_DUPLICATE_ASSEMBLY_NAME: Self
pub const SXS_FILE_HASH_MISMATCH: Self
pub const SXS_POLICY_PARSE_ERROR: Self
pub const SXS_XML_E_MISSINGQUOTE: Self
pub const SXS_XML_E_COMMENTSYNTAX: Self
pub const SXS_XML_E_BADSTARTNAMECHAR: Self
pub const SXS_XML_E_BADNAMECHAR: Self
pub const SXS_XML_E_BADCHARINSTRING: Self
pub const SXS_XML_E_XMLDECLSYNTAX: Self
pub const SXS_XML_E_BADCHARDATA: Self
pub const SXS_XML_E_MISSINGWHITESPACE: Self
pub const SXS_XML_E_EXPECTINGTAGEND: Self
pub const SXS_XML_E_MISSINGSEMICOLON: Self
pub const SXS_XML_E_UNBALANCEDPAREN: Self
pub const SXS_XML_E_INTERNALERROR: Self
pub const SXS_XML_E_UNEXPECTED_WHITESPACE: Self
pub const SXS_XML_E_INCOMPLETE_ENCODING: Self
pub const SXS_XML_E_MISSING_PAREN: Self
pub const SXS_XML_E_EXPECTINGCLOSEQUOTE: Self
pub const SXS_XML_E_MULTIPLE_COLONS: Self
pub const SXS_XML_E_INVALID_DECIMAL: Self
pub const SXS_XML_E_INVALID_HEXIDECIMAL: Self
pub const SXS_XML_E_INVALID_UNICODE: Self
pub const SXS_XML_E_WHITESPACEORQUESTIONMARK: Self
pub const SXS_XML_E_UNEXPECTEDENDTAG: Self
pub const SXS_XML_E_UNCLOSEDTAG: Self
pub const SXS_XML_E_DUPLICATEATTRIBUTE: Self
pub const SXS_XML_E_MULTIPLEROOTS: Self
pub const SXS_XML_E_INVALIDATROOTLEVEL: Self
pub const SXS_XML_E_BADXMLDECL: Self
pub const SXS_XML_E_MISSINGROOT: Self
pub const SXS_XML_E_UNEXPECTEDEOF: Self
pub const SXS_XML_E_BADPEREFINSUBSET: Self
pub const SXS_XML_E_UNCLOSEDSTARTTAG: Self
pub const SXS_XML_E_UNCLOSEDENDTAG: Self
pub const SXS_XML_E_UNCLOSEDSTRING: Self
pub const SXS_XML_E_UNCLOSEDCOMMENT: Self
pub const SXS_XML_E_UNCLOSEDDECL: Self
pub const SXS_XML_E_UNCLOSEDCDATA: Self
pub const SXS_XML_E_RESERVEDNAMESPACE: Self
pub const SXS_XML_E_INVALIDENCODING: Self
pub const SXS_XML_E_INVALIDSWITCH: Self
pub const SXS_XML_E_BADXMLCASE: Self
pub const SXS_XML_E_INVALID_STANDALONE: Self
pub const SXS_XML_E_UNEXPECTED_STANDALONE: Self
pub const SXS_XML_E_INVALID_VERSION: Self
pub const SXS_XML_E_MISSINGEQUALS: Self
pub const SXS_PROTECTION_RECOVERY_FAILED: Self
pub const SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT: Self
pub const SXS_PROTECTION_CATALOG_NOT_VALID: Self
pub const SXS_UNTRANSLATABLE_HRESULT: Self
pub const SXS_PROTECTION_CATALOG_FILE_MISSING: Self
pub const SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE: Self
pub const SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME: Self
pub const SXS_ASSEMBLY_MISSING: Self
pub const SXS_CORRUPT_ACTIVATION_STACK: Self
pub const SXS_CORRUPTION: Self
pub const SXS_EARLY_DEACTIVATION: Self
pub const SXS_INVALID_DEACTIVATION: Self
pub const SXS_MULTIPLE_DEACTIVATION: Self
pub const SXS_PROCESS_TERMINATION_REQUESTED: Self
pub const SXS_RELEASE_ACTIVATION_CONTEXT: Self
pub const SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY: Self
pub const SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE: Self
pub const SXS_INVALID_IDENTITY_ATTRIBUTE_NAME: Self
pub const SXS_IDENTITY_DUPLICATE_ATTRIBUTE: Self
pub const SXS_IDENTITY_PARSE_ERROR: Self
pub const MALFORMED_SUBSTITUTION_STRING: Self
pub const SXS_INCORRECT_PUBLIC_KEY_TOKEN: Self
pub const UNMAPPED_SUBSTITUTION_STRING: Self
pub const SXS_ASSEMBLY_NOT_LOCKED: Self
pub const SXS_COMPONENT_STORE_CORRUPT: Self
pub const ADVANCED_INSTALLER_FAILED: Self
pub const XML_ENCODING_MISMATCH: Self
pub const SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT: Self
pub const SXS_IDENTITIES_DIFFERENT: Self
pub const SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT: Self
pub const SXS_FILE_NOT_PART_OF_ASSEMBLY: Self
pub const SXS_MANIFEST_TOO_BIG: Self
pub const SXS_SETTING_NOT_REGISTERED: Self
pub const SXS_TRANSACTION_CLOSURE_INCOMPLETE: Self
pub const SMI_PRIMITIVE_INSTALLER_FAILED: Self
pub const GENERIC_COMMAND_FAILED: Self
pub const SXS_FILE_HASH_MISSING: Self
pub const SXS_DUPLICATE_ACTIVATABLE_CLASS: Self
pub const EVT_INVALID_CHANNEL_PATH: Self
pub const EVT_INVALID_QUERY: Self
pub const EVT_PUBLISHER_METADATA_NOT_FOUND: Self
pub const EVT_EVENT_TEMPLATE_NOT_FOUND: Self
pub const EVT_INVALID_PUBLISHER_NAME: Self
pub const EVT_INVALID_EVENT_DATA: Self
pub const EVT_CHANNEL_NOT_FOUND: Self
pub const EVT_MALFORMED_XML_TEXT: Self
pub const EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL: Self
pub const EVT_CONFIGURATION_ERROR: Self
pub const EVT_QUERY_RESULT_STALE: Self
pub const EVT_QUERY_RESULT_INVALID_POSITION: Self
pub const EVT_NON_VALIDATING_MSXML: Self
pub const EVT_FILTER_ALREADYSCOPED: Self
pub const EVT_FILTER_NOTELTSET: Self
pub const EVT_FILTER_INVARG: Self
pub const EVT_FILTER_INVTEST: Self
pub const EVT_FILTER_INVTYPE: Self
pub const EVT_FILTER_PARSEERR: Self
pub const EVT_FILTER_UNSUPPORTEDOP: Self
pub const EVT_FILTER_UNEXPECTEDTOKEN: Self
pub const EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL: Self
pub const EVT_INVALID_CHANNEL_PROPERTY_VALUE: Self
pub const EVT_INVALID_PUBLISHER_PROPERTY_VALUE: Self
pub const EVT_CHANNEL_CANNOT_ACTIVATE: Self
pub const EVT_FILTER_TOO_COMPLEX: Self
pub const EVT_MESSAGE_NOT_FOUND: Self
pub const EVT_MESSAGE_ID_NOT_FOUND: Self
pub const EVT_UNRESOLVED_VALUE_INSERT: Self
pub const EVT_UNRESOLVED_PARAMETER_INSERT: Self
pub const EVT_MAX_INSERTS_REACHED: Self
pub const EVT_EVENT_DEFINITION_NOT_FOUND: Self
pub const EVT_MESSAGE_LOCALE_NOT_FOUND: Self
pub const EVT_VERSION_TOO_OLD: Self
pub const EVT_VERSION_TOO_NEW: Self
pub const EVT_CANNOT_OPEN_CHANNEL_OF_QUERY: Self
pub const EVT_PUBLISHER_DISABLED: Self
pub const EVT_FILTER_OUT_OF_RANGE: Self
pub const EC_SUBSCRIPTION_CANNOT_ACTIVATE: Self
pub const EC_LOG_DISABLED: Self
pub const EC_CIRCULAR_FORWARDING: Self
pub const EC_CREDSTORE_FULL: Self
pub const EC_CRED_NOT_FOUND: Self
pub const EC_NO_ACTIVE_CHANNEL: Self
pub const MUI_FILE_NOT_FOUND: Self
pub const MUI_INVALID_FILE: Self
pub const MUI_INVALID_RC_CONFIG: Self
pub const MUI_INVALID_LOCALE_NAME: Self
pub const MUI_INVALID_ULTIMATEFALLBACK_NAME: Self
pub const MUI_FILE_NOT_LOADED: Self
pub const RESOURCE_ENUM_USER_STOP: Self
pub const MUI_INTLSETTINGS_UILANG_NOT_INSTALLED: Self
pub const MUI_INTLSETTINGS_INVALID_LOCALE_NAME: Self
pub const MRM_RUNTIME_NO_DEFAULT_OR_NEUTRAL_RESOURCE: Self
pub const MRM_INVALID_PRICONFIG: Self
pub const MRM_INVALID_FILE_TYPE: Self
pub const MRM_UNKNOWN_QUALIFIER: Self
pub const MRM_INVALID_QUALIFIER_VALUE: Self
pub const MRM_NO_CANDIDATE: Self
pub const MRM_NO_MATCH_OR_DEFAULT_CANDIDATE: Self
pub const MRM_RESOURCE_TYPE_MISMATCH: Self
pub const MRM_DUPLICATE_MAP_NAME: Self
pub const MRM_DUPLICATE_ENTRY: Self
pub const MRM_INVALID_RESOURCE_IDENTIFIER: Self
pub const MRM_FILEPATH_TOO_LONG: Self
pub const MRM_UNSUPPORTED_DIRECTORY_TYPE: Self
pub const MRM_INVALID_PRI_FILE: Self
pub const MRM_NAMED_RESOURCE_NOT_FOUND: Self
pub const MRM_MAP_NOT_FOUND: Self
pub const MRM_UNSUPPORTED_PROFILE_TYPE: Self
pub const MRM_INVALID_QUALIFIER_OPERATOR: Self
pub const MRM_INDETERMINATE_QUALIFIER_VALUE: Self
pub const MRM_AUTOMERGE_ENABLED: Self
pub const MRM_TOO_MANY_RESOURCES: Self
pub const MRM_UNSUPPORTED_FILE_TYPE_FOR_MERGE: Self
pub const MRM_UNSUPPORTED_FILE_TYPE_FOR_LOAD_UNLOAD_PRI_FILE: Self
pub const MRM_NO_CURRENT_VIEW_ON_THREAD: Self
pub const DIFFERENT_PROFILE_RESOURCE_MANAGER_EXIST: Self
pub const OPERATION_NOT_ALLOWED_FROM_SYSTEM_COMPONENT: Self
pub const MRM_DIRECT_REF_TO_NON_DEFAULT_RESOURCE: Self
pub const MRM_GENERATION_COUNT_MISMATCH: Self
pub const PRI_MERGE_VERSION_MISMATCH: Self
pub const PRI_MERGE_MISSING_SCHEMA: Self
pub const PRI_MERGE_LOAD_FILE_FAILED: Self
pub const PRI_MERGE_ADD_FILE_FAILED: Self
pub const PRI_MERGE_WRITE_FILE_FAILED: Self
pub const PRI_MERGE_MULTIPLE_PACKAGE_FAMILIES_NOT_ALLOWED: Self
pub const PRI_MERGE_MULTIPLE_MAIN_PACKAGES_NOT_ALLOWED: Self
pub const PRI_MERGE_BUNDLE_PACKAGES_NOT_ALLOWED: Self
pub const PRI_MERGE_MAIN_PACKAGE_REQUIRED: Self
pub const PRI_MERGE_RESOURCE_PACKAGE_REQUIRED: Self
pub const PRI_MERGE_INVALID_FILE_NAME: Self
pub const MRM_PACKAGE_NOT_FOUND: Self
pub const MRM_MISSING_DEFAULT_LANGUAGE: Self
pub const MCA_INVALID_CAPABILITIES_STRING: Self
pub const MCA_INVALID_VCP_VERSION: Self
pub const MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION: Self
pub const MCA_MCCS_VERSION_MISMATCH: Self
pub const MCA_UNSUPPORTED_MCCS_VERSION: Self
pub const MCA_INTERNAL_ERROR: Self
pub const MCA_INVALID_TECHNOLOGY_TYPE_RETURNED: Self
pub const MCA_UNSUPPORTED_COLOR_TEMPERATURE: Self
pub const AMBIGUOUS_SYSTEM_DEVICE: Self
pub const SYSTEM_DEVICE_NOT_FOUND: Self
pub const HASH_NOT_SUPPORTED: Self
pub const HASH_NOT_PRESENT: Self
pub const SECONDARY_IC_PROVIDER_NOT_REGISTERED: Self
pub const GPIO_CLIENT_INFORMATION_INVALID: Self
pub const GPIO_VERSION_NOT_SUPPORTED: Self
pub const GPIO_INVALID_REGISTRATION_PACKET: Self
pub const GPIO_OPERATION_DENIED: Self
pub const GPIO_INCOMPATIBLE_CONNECT_MODE: Self
pub const GPIO_INTERRUPT_ALREADY_UNMASKED: Self
pub const CANNOT_SWITCH_RUNLEVEL: Self
pub const INVALID_RUNLEVEL_SETTING: Self
pub const RUNLEVEL_SWITCH_TIMEOUT: Self
pub const RUNLEVEL_SWITCH_AGENT_TIMEOUT: Self
pub const RUNLEVEL_SWITCH_IN_PROGRESS: Self
pub const SERVICES_FAILED_AUTOSTART: Self
pub const COM_TASK_STOP_PENDING: Self
pub const INSTALL_OPEN_PACKAGE_FAILED: Self
pub const INSTALL_PACKAGE_NOT_FOUND: Self
pub const INSTALL_INVALID_PACKAGE: Self
pub const INSTALL_RESOLVE_DEPENDENCY_FAILED: Self
pub const INSTALL_OUT_OF_DISK_SPACE: Self
pub const INSTALL_NETWORK_FAILURE: Self
pub const INSTALL_REGISTRATION_FAILURE: Self
pub const INSTALL_DEREGISTRATION_FAILURE: Self
pub const INSTALL_CANCEL: Self
pub const INSTALL_FAILED: Self
pub const REMOVE_FAILED: Self
pub const PACKAGE_ALREADY_EXISTS: Self
pub const NEEDS_REMEDIATION: Self
pub const INSTALL_PREREQUISITE_FAILED: Self
pub const PACKAGE_REPOSITORY_CORRUPTED: Self
pub const INSTALL_POLICY_FAILURE: Self
pub const PACKAGE_UPDATING: Self
pub const DEPLOYMENT_BLOCKED_BY_POLICY: Self
pub const PACKAGES_IN_USE: Self
pub const RECOVERY_FILE_CORRUPT: Self
pub const INVALID_STAGED_SIGNATURE: Self
pub const DELETING_EXISTING_APPLICATIONDATA_STORE_FAILED: Self
pub const INSTALL_PACKAGE_DOWNGRADE: Self
pub const SYSTEM_NEEDS_REMEDIATION: Self
pub const APPX_INTEGRITY_FAILURE_CLR_NGEN: Self
pub const RESILIENCY_FILE_CORRUPT: Self
pub const INSTALL_FIREWALL_SERVICE_NOT_RUNNING: Self
pub const PACKAGE_MOVE_FAILED: Self
pub const INSTALL_VOLUME_NOT_EMPTY: Self
pub const INSTALL_VOLUME_OFFLINE: Self
pub const INSTALL_VOLUME_CORRUPT: Self
pub const NEEDS_REGISTRATION: Self
pub const INSTALL_WRONG_PROCESSOR_ARCHITECTURE: Self
pub const DEV_SIDELOAD_LIMIT_EXCEEDED: Self
pub const INSTALL_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE: Self
pub const PACKAGE_NOT_SUPPORTED_ON_FILESYSTEM: Self
pub const PACKAGE_MOVE_BLOCKED_BY_STREAMING: Self
pub const INSTALL_OPTIONAL_PACKAGE_APPLICATIONID_NOT_UNIQUE: Self
pub const PACKAGE_STAGING_ONHOLD: Self
pub const INSTALL_INVALID_RELATED_SET_UPDATE: Self
pub const INSTALL_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE_FULLTRUST_CAPABILITY: Self
pub const DEPLOYMENT_BLOCKED_BY_USER_LOG_OFF: Self
pub const PROVISION_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE_PROVISIONED: Self
pub const PACKAGES_REPUTATION_CHECK_FAILED: Self
pub const PACKAGES_REPUTATION_CHECK_TIMEDOUT: Self
pub const DEPLOYMENT_OPTION_NOT_SUPPORTED: Self
pub const APPINSTALLER_ACTIVATION_BLOCKED: Self
pub const REGISTRATION_FROM_REMOTE_DRIVE_NOT_SUPPORTED: Self
pub const APPX_RAW_DATA_WRITE_FAILED: Self
pub const DEPLOYMENT_BLOCKED_BY_VOLUME_POLICY_PACKAGE: Self
pub const DEPLOYMENT_BLOCKED_BY_VOLUME_POLICY_MACHINE: Self
pub const DEPLOYMENT_BLOCKED_BY_PROFILE_POLICY: Self
pub const DEPLOYMENT_FAILED_CONFLICTING_MUTABLE_PACKAGE_DIRECTORY: Self
pub const SINGLETON_RESOURCE_INSTALLED_IN_ACTIVE_USER: Self
pub const DIFFERENT_VERSION_OF_PACKAGED_SERVICE_INSTALLED: Self
pub const SERVICE_EXISTS_AS_NON_PACKAGED_SERVICE: Self
pub const PACKAGED_SERVICE_REQUIRES_ADMIN_PRIVILEGES: Self
pub const STATE_LOAD_STORE_FAILED: Self
pub const STATE_GET_VERSION_FAILED: Self
pub const STATE_SET_VERSION_FAILED: Self
pub const STATE_STRUCTURED_RESET_FAILED: Self
pub const STATE_OPEN_CONTAINER_FAILED: Self
pub const STATE_CREATE_CONTAINER_FAILED: Self
pub const STATE_DELETE_CONTAINER_FAILED: Self
pub const STATE_READ_SETTING_FAILED: Self
pub const STATE_WRITE_SETTING_FAILED: Self
pub const STATE_DELETE_SETTING_FAILED: Self
pub const STATE_QUERY_SETTING_FAILED: Self
pub const STATE_READ_COMPOSITE_SETTING_FAILED: Self
pub const STATE_WRITE_COMPOSITE_SETTING_FAILED: Self
pub const STATE_ENUMERATE_CONTAINER_FAILED: Self
pub const STATE_ENUMERATE_SETTINGS_FAILED: Self
pub const STATE_COMPOSITE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED: Self
pub const STATE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED: Self
pub const STATE_SETTING_NAME_SIZE_LIMIT_EXCEEDED: Self
pub const STATE_CONTAINER_NAME_SIZE_LIMIT_EXCEEDED: Self
pub const API_UNAVAILABLE: Self
Source§impl ERROR
impl ERROR
Sourcepub const fn to_hresult(self) -> HRESULT
Available on crate feature ole
only.
pub const fn to_hresult(self) -> HRESULT
ole
only.HRESULT_FROM_WIN32
macro.
Trait Implementations§
Source§impl Error for ERROR
impl Error for ERROR
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
Source§impl Ord for ERROR
impl Ord for ERROR
Source§impl PartialOrd for ERROR
impl PartialOrd for ERROR
Source§impl SystemError for ERROR
impl SystemError for ERROR
Source§fn FormatMessage(self) -> String
fn FormatMessage(self) -> String
FormatMessage
.
function.