Struct ERROR

Source
pub struct ERROR(/* private fields */);
Available on crate feature 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

Source

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.

Source

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.

Source

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

Source

pub const SUCCESS: Self

The operation completed successfully.

Source

pub const INVALID_FUNCTION: Self

Source

pub const FILE_NOT_FOUND: Self

Source

pub const PATH_NOT_FOUND: Self

Source

pub const TOO_MANY_OPEN_FILES: Self

Source

pub const ACCESS_DENIED: Self

Source

pub const INVALID_HANDLE: Self

Source

pub const ARENA_TRASHED: Self

Source

pub const NOT_ENOUGH_MEMORY: Self

Source

pub const INVALID_BLOCK: Self

Source

pub const BAD_ENVIRONMENT: Self

Source

pub const BAD_FORMAT: Self

Source

pub const INVALID_ACCESS: Self

Source

pub const INVALID_DATA: Self

Source

pub const OUTOFMEMORY: Self

Source

pub const INVALID_DRIVE: Self

Source

pub const CURRENT_DIRECTORY: Self

Source

pub const NOT_SAME_DEVICE: Self

Source

pub const NO_MORE_FILES: Self

Source

pub const WRITE_PROTECT: Self

Source

pub const BAD_UNIT: Self

Source

pub const NOT_READY: Self

Source

pub const BAD_COMMAND: Self

Source

pub const CRC: Self

Source

pub const BAD_LENGTH: Self

Source

pub const SEEK: Self

Source

pub const NOT_DOS_DISK: Self

Source

pub const SECTOR_NOT_FOUND: Self

Source

pub const OUT_OF_PAPER: Self

Source

pub const WRITE_FAULT: Self

Source

pub const READ_FAULT: Self

Source

pub const GEN_FAILURE: Self

Source

pub const SHARING_VIOLATION: Self

Source

pub const LOCK_VIOLATION: Self

Source

pub const WRONG_DISK: Self

Source

pub const SHARING_BUFFER_EXCEEDED: Self

Source

pub const HANDLE_EOF: Self

Source

pub const HANDLE_DISK_FULL: Self

Source

pub const NOT_SUPPORTED: Self

Source

pub const REM_NOT_LIST: Self

Source

pub const DUP_NAME: Self

Source

pub const BAD_NETPATH: Self

Source

pub const NETWORK_BUSY: Self

Source

pub const DEV_NOT_EXIST: Self

Source

pub const TOO_MANY_CMDS: Self

Source

pub const ADAP_HDW_ERR: Self

Source

pub const BAD_NET_RESP: Self

Source

pub const UNEXP_NET_ERR: Self

Source

pub const BAD_REM_ADAP: Self

Source

pub const PRINTQ_FULL: Self

Source

pub const NO_SPOOL_SPACE: Self

Source

pub const PRINT_CANCELLED: Self

Source

pub const NETNAME_DELETED: Self

Source

pub const NETWORK_ACCESS_DENIED: Self

Source

pub const BAD_DEV_TYPE: Self

Source

pub const BAD_NET_NAME: Self

Source

pub const TOO_MANY_NAMES: Self

Source

pub const TOO_MANY_SESS: Self

Source

pub const SHARING_PAUSED: Self

Source

pub const REQ_NOT_ACCEP: Self

Source

pub const REDIR_PAUSED: Self

Source

pub const FILE_EXISTS: Self

Source

pub const CANNOT_MAKE: Self

Source

pub const FAIL_I24: Self

Source

pub const OUT_OF_STRUCTURES: Self

Source

pub const ALREADY_ASSIGNED: Self

Source

pub const INVALID_PASSWORD: Self

Source

pub const INVALID_PARAMETER: Self

Source

pub const NET_WRITE_FAULT: Self

Source

pub const NO_PROC_SLOTS: Self

Source

pub const TOO_MANY_SEMAPHORES: Self

Source

pub const EXCL_SEM_ALREADY_OWNED: Self

Source

pub const SEM_IS_SET: Self

Source

pub const TOO_MANY_SEM_REQUESTS: Self

Source

pub const INVALID_AT_INTERRUPT_TIME: Self

Source

pub const SEM_OWNER_DIED: Self

Source

pub const SEM_USER_LIMIT: Self

Source

pub const DISK_CHANGE: Self

Source

pub const DRIVE_LOCKED: Self

Source

pub const BROKEN_PIPE: Self

Source

pub const OPEN_FAILED: Self

Source

pub const BUFFER_OVERFLOW: Self

Source

pub const DISK_FULL: Self

Source

pub const NO_MORE_SEARCH_HANDLES: Self

Source

pub const INVALID_TARGET_HANDLE: Self

Source

pub const INVALID_CATEGORY: Self

Source

pub const INVALID_VERIFY_SWITCH: Self

Source

pub const BAD_DRIVER_LEVEL: Self

Source

pub const CALL_NOT_IMPLEMENTED: Self

Source

pub const SEM_TIMEOUT: Self

Source

pub const INSUFFICIENT_BUFFER: Self

Source

pub const INVALID_NAME: Self

Source

pub const INVALID_LEVEL: Self

Source

pub const NO_VOLUME_LABEL: Self

Source

pub const MOD_NOT_FOUND: Self

Source

pub const PROC_NOT_FOUND: Self

Source

pub const WAIT_NO_CHILDREN: Self

Source

pub const CHILD_NOT_COMPLETE: Self

Source

pub const DIRECT_ACCESS_HANDLE: Self

Source

pub const NEGATIVE_SEEK: Self

Source

pub const SEEK_ON_DEVICE: Self

Source

pub const IS_JOIN_TARGET: Self

Source

pub const IS_JOINED: Self

Source

pub const IS_SUBSTED: Self

Source

pub const NOT_JOINED: Self

Source

pub const NOT_SUBSTED: Self

Source

pub const JOIN_TO_JOIN: Self

Source

pub const SUBST_TO_SUBST: Self

Source

pub const JOIN_TO_SUBST: Self

Source

pub const SUBST_TO_JOIN: Self

Source

pub const BUSY_DRIVE: Self

Source

pub const SAME_DRIVE: Self

Source

pub const DIR_NOT_ROOT: Self

Source

pub const DIR_NOT_EMPTY: Self

Source

pub const IS_SUBST_PATH: Self

Source

pub const IS_JOIN_PATH: Self

Source

pub const PATH_BUSY: Self

Source

pub const IS_SUBST_TARGET: Self

Source

pub const SYSTEM_TRACE: Self

Source

pub const INVALID_EVENT_COUNT: Self

Source

pub const TOO_MANY_MUXWAITERS: Self

Source

pub const INVALID_LIST_FORMAT: Self

Source

pub const LABEL_TOO_LONG: Self

Source

pub const TOO_MANY_TCBS: Self

Source

pub const SIGNAL_REFUSED: Self

Source

pub const DISCARDED: Self

Source

pub const NOT_LOCKED: Self

Source

pub const BAD_THREADID_ADDR: Self

Source

pub const BAD_ARGUMENTS: Self

Source

pub const BAD_PATHNAME: Self

Source

pub const SIGNAL_PENDING: Self

Source

pub const MAX_THRDS_REACHED: Self

Source

pub const LOCK_FAILED: Self

Source

pub const BUSY: Self

Source

pub const DEVICE_SUPPORT_IN_PROGRESS: Self

Source

pub const CANCEL_VIOLATION: Self

Source

pub const ATOMIC_LOCKS_NOT_SUPPORTED: Self

Source

pub const INVALID_SEGMENT_NUMBER: Self

Source

pub const INVALID_ORDINAL: Self

Source

pub const ALREADY_EXISTS: Self

Source

pub const INVALID_FLAG_NUMBER: Self

Source

pub const SEM_NOT_FOUND: Self

Source

pub const INVALID_STARTING_CODESEG: Self

Source

pub const INVALID_STACKSEG: Self

Source

pub const INVALID_MODULETYPE: Self

Source

pub const INVALID_EXE_SIGNATURE: Self

Source

pub const EXE_MARKED_INVALID: Self

Source

pub const BAD_EXE_FORMAT: Self

Source

pub const ITERATED_DATA_EXCEEDS_64k: Self

Source

pub const INVALID_MINALLOCSIZE: Self

Source

pub const IOPL_NOT_ENABLED: Self

Source

pub const INVALID_SEGDPL: Self

Source

pub const AUTODATASEG_EXCEEDS_64k: Self

Source

pub const RING2SEG_MUST_BE_MOVABLE: Self

Source

pub const RELOC_CHAIN_XEEDS_SEGLIM: Self

Source

pub const INFLOOP_IN_RELOC_CHAIN: Self

Source

pub const ENVVAR_NOT_FOUND: Self

Source

pub const NO_SIGNAL_SENT: Self

Source

pub const FILENAME_EXCED_RANGE: Self

Source

pub const RING2_STACK_IN_USE: Self

Source

pub const META_EXPANSION_TOO_LONG: Self

Source

pub const INVALID_SIGNAL_NUMBER: Self

Source

pub const THREAD_1_INACTIVE: Self

Source

pub const LOCKED: Self

Source

pub const TOO_MANY_MODULES: Self

Source

pub const NESTING_NOT_ALLOWED: Self

Source

pub const EXE_MACHINE_TYPE_MISMATCH: Self

Source

pub const EXE_CANNOT_MODIFY_SIGNED_BINARY: Self

Source

pub const EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY: Self

Source

pub const FILE_CHECKED_OUT: Self

Source

pub const CHECKOUT_REQUIRED: Self

Source

pub const BAD_FILE_TYPE: Self

Source

pub const FILE_TOO_LARGE: Self

Source

pub const FORMS_AUTH_REQUIRED: Self

Source

pub const VIRUS_INFECTED: Self

Source

pub const VIRUS_DELETED: Self

Source

pub const PIPE_LOCAL: Self

Source

pub const BAD_PIPE: Self

Source

pub const PIPE_BUSY: Self

Source

pub const NO_DATA: Self

Source

pub const PIPE_NOT_CONNECTED: Self

Source

pub const MORE_DATA: Self

Source

pub const NO_WORK_DONE: Self

Source

pub const VC_DISCONNECTED: Self

Source

pub const INVALID_EA_NAME: Self

Source

pub const EA_LIST_INCONSISTENT: Self

Source

pub const NO_MORE_ITEMS: Self

Source

pub const CANNOT_COPY: Self

Source

pub const DIRECTORY: Self

Source

pub const EAS_DIDNT_FIT: Self

Source

pub const EA_FILE_CORRUPT: Self

Source

pub const EA_TABLE_FULL: Self

Source

pub const INVALID_EA_HANDLE: Self

Source

pub const EAS_NOT_SUPPORTED: Self

Source

pub const NOT_OWNER: Self

Source

pub const TOO_MANY_POSTS: Self

Source

pub const PARTIAL_COPY: Self

Source

pub const OPLOCK_NOT_GRANTED: Self

Source

pub const INVALID_OPLOCK_PROTOCOL: Self

Source

pub const DISK_TOO_FRAGMENTED: Self

Source

pub const DELETE_PENDING: Self

Source

pub const INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING: Self

Source

pub const SHORT_NAMES_NOT_ENABLED_ON_VOLUME: Self

Source

pub const SECURITY_STREAM_IS_INCONSISTENT: Self

Source

pub const INVALID_LOCK_RANGE: Self

Source

pub const IMAGE_SUBSYSTEM_NOT_PRESENT: Self

Source

pub const NOTIFICATION_GUID_ALREADY_DEFINED: Self

Source

pub const INVALID_EXCEPTION_HANDLER: Self

Source

pub const DUPLICATE_PRIVILEGES: Self

Source

pub const NO_RANGES_PROCESSED: Self

Source

pub const NOT_ALLOWED_ON_SYSTEM_FILE: Self

Source

pub const DISK_RESOURCES_EXHAUSTED: Self

Source

pub const INVALID_TOKEN: Self

Source

pub const DEVICE_FEATURE_NOT_SUPPORTED: Self

Source

pub const MR_MID_NOT_FOUND: Self

Source

pub const SCOPE_NOT_FOUND: Self

Source

pub const UNDEFINED_SCOPE: Self

Source

pub const INVALID_CAP: Self

Source

pub const DEVICE_UNREACHABLE: Self

Source

pub const DEVICE_NO_RESOURCES: Self

Source

pub const DATA_CHECKSUM_ERROR: Self

Source

pub const INTERMIXED_KERNEL_EA_OPERATION: Self

Source

pub const FILE_LEVEL_TRIM_NOT_SUPPORTED: Self

Source

pub const OFFSET_ALIGNMENT_VIOLATION: Self

Source

pub const INVALID_FIELD_IN_PARAMETER_LIST: Self

Source

pub const OPERATION_IN_PROGRESS: Self

Source

pub const BAD_DEVICE_PATH: Self

Source

pub const TOO_MANY_DESCRIPTORS: Self

Source

pub const SCRUB_DATA_DISABLED: Self

Source

pub const NOT_REDUNDANT_STORAGE: Self

Source

pub const RESIDENT_FILE_NOT_SUPPORTED: Self

Source

pub const COMPRESSED_FILE_NOT_SUPPORTED: Self

Source

pub const DIRECTORY_NOT_SUPPORTED: Self

Source

pub const NOT_READ_FROM_COPY: Self

Source

pub const FT_WRITE_FAILURE: Self

Source

pub const FT_DI_SCAN_REQUIRED: Self

Source

pub const INVALID_KERNEL_INFO_VERSION: Self

Source

pub const INVALID_PEP_INFO_VERSION: Self

Source

pub const OBJECT_NOT_EXTERNALLY_BACKED: Self

Source

pub const EXTERNAL_BACKING_PROVIDER_UNKNOWN: Self

Source

pub const COMPRESSION_NOT_BENEFICIAL: Self

Source

pub const STORAGE_TOPOLOGY_ID_MISMATCH: Self

Source

pub const BLOCKED_BY_PARENTAL_CONTROLS: Self

Source

pub const BLOCK_TOO_MANY_REFERENCES: Self

Source

pub const MARKED_TO_DISALLOW_WRITES: Self

Source

pub const ENCLAVE_FAILURE: Self

Source

pub const FAIL_NOACTION_REBOOT: Self

Source

pub const FAIL_SHUTDOWN: Self

Source

pub const FAIL_RESTART: Self

Source

pub const MAX_SESSIONS_REACHED: Self

Source

pub const NETWORK_ACCESS_DENIED_EDP: Self

Source

pub const DEVICE_HINT_NAME_BUFFER_TOO_SMALL: Self

Source

pub const EDP_POLICY_DENIES_OPERATION: Self

Source

pub const EDP_DPL_POLICY_CANT_BE_SATISFIED: Self

Source

pub const CLOUD_FILE_SYNC_ROOT_METADATA_CORRUPT: Self

Source

pub const DEVICE_IN_MAINTENANCE: Self

Source

pub const NOT_SUPPORTED_ON_DAX: Self

Source

pub const DAX_MAPPING_EXISTS: Self

Source

pub const CLOUD_FILE_PROVIDER_NOT_RUNNING: Self

Source

pub const CLOUD_FILE_METADATA_CORRUPT: Self

Source

pub const CLOUD_FILE_METADATA_TOO_LARGE: Self

Source

pub const CLOUD_FILE_PROPERTY_BLOB_TOO_LARGE: Self

Source

pub const CLOUD_FILE_PROPERTY_BLOB_CHECKSUM_MISMATCH: Self

Source

pub const CHILD_PROCESS_BLOCKED: Self

Source

pub const STORAGE_LOST_DATA_PERSISTENCE: Self

Source

pub const FILE_SYSTEM_VIRTUALIZATION_UNAVAILABLE: Self

Source

pub const FILE_SYSTEM_VIRTUALIZATION_METADATA_CORRUPT: Self

Source

pub const FILE_SYSTEM_VIRTUALIZATION_BUSY: Self

Source

pub const FILE_SYSTEM_VIRTUALIZATION_PROVIDER_UNKNOWN: Self

Source

pub const GDI_HANDLE_LEAK: Self

Source

pub const CLOUD_FILE_TOO_MANY_PROPERTY_BLOBS: Self

Source

pub const CLOUD_FILE_PROPERTY_VERSION_NOT_SUPPORTED: Self

Source

pub const NOT_A_CLOUD_FILE: Self

Source

pub const CLOUD_FILE_NOT_IN_SYNC: Self

Source

pub const CLOUD_FILE_ALREADY_CONNECTED: Self

Source

pub const CLOUD_FILE_NOT_SUPPORTED: Self

Source

pub const CLOUD_FILE_INVALID_REQUEST: Self

Source

pub const CLOUD_FILE_READ_ONLY_VOLUME: Self

Source

pub const CLOUD_FILE_CONNECTED_PROVIDER_ONLY: Self

Source

pub const CLOUD_FILE_VALIDATION_FAILED: Self

Source

pub const SMB1_NOT_AVAILABLE: Self

Source

pub const FILE_SYSTEM_VIRTUALIZATION_INVALID_OPERATION: Self

Source

pub const CLOUD_FILE_AUTHENTICATION_FAILED: Self

Source

pub const CLOUD_FILE_INSUFFICIENT_RESOURCES: Self

Source

pub const CLOUD_FILE_NETWORK_UNAVAILABLE: Self

Source

pub const CLOUD_FILE_UNSUCCESSFUL: Self

Source

pub const CLOUD_FILE_NOT_UNDER_SYNC_ROOT: Self

Source

pub const CLOUD_FILE_IN_USE: Self

Source

pub const CLOUD_FILE_PINNED: Self

Source

pub const CLOUD_FILE_REQUEST_ABORTED: Self

Source

pub const CLOUD_FILE_PROPERTY_CORRUPT: Self

Source

pub const CLOUD_FILE_ACCESS_DENIED: Self

Source

pub const CLOUD_FILE_PROPERTY_LOCK_CONFLICT: Self

Source

pub const CLOUD_FILE_REQUEST_CANCELED: Self

Source

pub const EXTERNAL_SYSKEY_NOT_SUPPORTED: Self

Source

pub const THREAD_MODE_ALREADY_BACKGROUND: Self

Source

pub const THREAD_MODE_NOT_BACKGROUND: Self

Source

pub const PROCESS_MODE_ALREADY_BACKGROUND: Self

Source

pub const PROCESS_MODE_NOT_BACKGROUND: Self

Source

pub const CLOUD_FILE_PROVIDER_TERMINATED: Self

Source

pub const NOT_A_CLOUD_SYNC_ROOT: Self

Source

pub const FILE_PROTECTED_UNDER_DPL: Self

Source

pub const VOLUME_NOT_CLUSTER_ALIGNED: Self

Source

pub const NO_PHYSICALLY_ALIGNED_FREE_SPACE_FOUND: Self

Source

pub const APPX_FILE_NOT_ENCRYPTED: Self

Source

pub const RWRAW_ENCRYPTED_FILE_NOT_ENCRYPTED: Self

Source

pub const RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILEOFFSET: Self

Source

pub const RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILERANGE: Self

Source

pub const RWRAW_ENCRYPTED_INVALID_EDATAINFO_PARAMETER: Self

Source

pub const LINUX_SUBSYSTEM_NOT_PRESENT: Self

Source

pub const FT_READ_FAILURE: Self

Source

pub const STORAGE_RESERVE_ID_INVALID: Self

Source

pub const STORAGE_RESERVE_DOES_NOT_EXIST: Self

Source

pub const STORAGE_RESERVE_ALREADY_EXISTS: Self

Source

pub const STORAGE_RESERVE_NOT_EMPTY: Self

Source

pub const NOT_A_DAX_VOLUME: Self

Source

pub const NOT_DAX_MAPPABLE: Self

Source

pub const TIME_SENSITIVE_THREAD: Self

Source

pub const DPL_NOT_SUPPORTED_FOR_USER: Self

Source

pub const CASE_DIFFERING_NAMES_IN_DIR: Self

Source

pub const FILE_NOT_SUPPORTED: Self

Source

pub const CLOUD_FILE_REQUEST_TIMEOUT: Self

Source

pub const NO_TASK_QUEUE: Self

Source

pub const SRC_SRV_DLL_LOAD_FAILED: Self

Source

pub const NOT_SUPPORTED_WITH_BTT: Self

Source

pub const ENCRYPTION_DISABLED: Self

Source

pub const ENCRYPTING_METADATA_DISALLOWED: Self

Source

pub const CANT_CLEAR_ENCRYPTION_FLAG: Self

Source

pub const NO_SUCH_DEVICE: Self

Source

pub const CAPAUTHZ_NOT_DEVUNLOCKED: Self

Source

pub const CAPAUTHZ_CHANGE_TYPE: Self

Source

pub const CAPAUTHZ_NOT_PROVISIONED: Self

Source

pub const CAPAUTHZ_NOT_AUTHORIZED: Self

Source

pub const CAPAUTHZ_NO_POLICY: Self

Source

pub const CAPAUTHZ_DB_CORRUPTED: Self

Source

pub const CAPAUTHZ_SCCD_INVALID_CATALOG: Self

Source

pub const CAPAUTHZ_SCCD_NO_AUTH_ENTITY: Self

Source

pub const CAPAUTHZ_SCCD_PARSE_ERROR: Self

Source

pub const CAPAUTHZ_SCCD_DEV_MODE_REQUIRED: Self

Source

pub const CAPAUTHZ_SCCD_NO_CAPABILITY_MATCH: Self

Source

pub const PNP_QUERY_REMOVE_DEVICE_TIMEOUT: Self

Source

pub const PNP_QUERY_REMOVE_UNRELATED_DEVICE_TIMEOUT: Self

Source

pub const DEVICE_HARDWARE_ERROR: Self

Source

pub const INVALID_ADDRESS: Self

Source

pub const VRF_CFG_ENABLED: Self

Source

pub const PARTITION_TERMINATING: Self

Source

pub const USER_PROFILE_LOAD: Self

Source

pub const ARITHMETIC_OVERFLOW: Self

Source

pub const PIPE_CONNECTED: Self

Source

pub const PIPE_LISTENING: Self

Source

pub const VERIFIER_STOP: Self

Source

pub const ABIOS_ERROR: Self

Source

pub const WX86_WARNING: Self

Source

pub const WX86_ERROR: Self

Source

pub const TIMER_NOT_CANCELED: Self

Source

pub const UNWIND: Self

Source

pub const BAD_STACK: Self

Source

pub const INVALID_UNWIND_TARGET: Self

Source

pub const INVALID_PORT_ATTRIBUTES: Self

Source

pub const PORT_MESSAGE_TOO_LONG: Self

Source

pub const INVALID_QUOTA_LOWER: Self

Source

pub const DEVICE_ALREADY_ATTACHED: Self

Source

pub const INSTRUCTION_MISALIGNMENT: Self

Source

pub const PROFILING_NOT_STARTED: Self

Source

pub const PROFILING_NOT_STOPPED: Self

Source

pub const COULD_NOT_INTERPRET: Self

Source

pub const PROFILING_AT_LIMIT: Self

Source

pub const CANT_WAIT: Self

Source

pub const CANT_TERMINATE_SELF: Self

Source

pub const UNEXPECTED_MM_CREATE_ERR: Self

Source

pub const UNEXPECTED_MM_MAP_ERROR: Self

Source

pub const UNEXPECTED_MM_EXTEND_ERR: Self

Source

pub const BAD_FUNCTION_TABLE: Self

Source

pub const NO_GUID_TRANSLATION: Self

Source

pub const INVALID_LDT_SIZE: Self

Source

pub const INVALID_LDT_OFFSET: Self

Source

pub const INVALID_LDT_DESCRIPTOR: Self

Source

pub const TOO_MANY_THREADS: Self

Source

pub const THREAD_NOT_IN_PROCESS: Self

Source

pub const PAGEFILE_QUOTA_EXCEEDED: Self

Source

pub const LOGON_SERVER_CONFLICT: Self

Source

pub const SYNCHRONIZATION_REQUIRED: Self

Source

pub const NET_OPEN_FAILED: Self

Source

pub const IO_PRIVILEGE_FAILED: Self

Source

pub const CONTROL_C_EXIT: Self

Source

pub const MISSING_SYSTEMFILE: Self

Source

pub const UNHANDLED_EXCEPTION: Self

Source

pub const APP_INIT_FAILURE: Self

Source

pub const PAGEFILE_CREATE_FAILED: Self

Source

pub const INVALID_IMAGE_HASH: Self

Source

pub const NO_PAGEFILE: Self

Source

pub const ILLEGAL_FLOAT_CONTEXT: Self

Source

pub const NO_EVENT_PAIR: Self

Source

pub const DOMAIN_CTRLR_CONFIG_ERROR: Self

Source

pub const ILLEGAL_CHARACTER: Self

Source

pub const UNDEFINED_CHARACTER: Self

Source

pub const FLOPPY_VOLUME: Self

Source

pub const BIOS_FAILED_TO_CONNECT_INTERRUPT: Self

Source

pub const BACKUP_CONTROLLER: Self

Source

pub const MUTANT_LIMIT_EXCEEDED: Self

Source

pub const FS_DRIVER_REQUIRED: Self

Source

pub const CANNOT_LOAD_REGISTRY_FILE: Self

Source

pub const DEBUG_ATTACH_FAILED: Self

Source

pub const SYSTEM_PROCESS_TERMINATED: Self

Source

pub const DATA_NOT_ACCEPTED: Self

Source

pub const VDM_HARD_ERROR: Self

Source

pub const DRIVER_CANCEL_TIMEOUT: Self

Source

pub const REPLY_MESSAGE_MISMATCH: Self

Source

pub const LOST_WRITEBEHIND_DATA: Self

Source

pub const CLIENT_SERVER_PARAMETERS_INVALID: Self

Source

pub const NOT_TINY_STREAM: Self

Source

pub const STACK_OVERFLOW_READ: Self

Source

pub const CONVERT_TO_LARGE: Self

Source

pub const FOUND_OUT_OF_SCOPE: Self

Source

pub const ALLOCATE_BUCKET: Self

Source

pub const MARSHALL_OVERFLOW: Self

Source

pub const INVALID_VARIANT: Self

Source

pub const BAD_COMPRESSION_BUFFER: Self

Source

pub const AUDIT_FAILED: Self

Source

pub const TIMER_RESOLUTION_NOT_SET: Self

Source

pub const INSUFFICIENT_LOGON_INFO: Self

Source

pub const BAD_DLL_ENTRYPOINT: Self

Source

pub const BAD_SERVICE_ENTRYPOINT: Self

Source

pub const IP_ADDRESS_CONFLICT1: Self

Source

pub const IP_ADDRESS_CONFLICT2: Self

Source

pub const REGISTRY_QUOTA_LIMIT: Self

Source

pub const NO_CALLBACK_ACTIVE: Self

Source

pub const PWD_TOO_SHORT: Self

Source

pub const PWD_TOO_RECENT: Self

Source

pub const PWD_HISTORY_CONFLICT: Self

Source

pub const UNSUPPORTED_COMPRESSION: Self

Source

pub const INVALID_HW_PROFILE: Self

Source

pub const INVALID_PLUGPLAY_DEVICE_PATH: Self

Source

pub const QUOTA_LIST_INCONSISTENT: Self

Source

pub const EVALUATION_EXPIRATION: Self

Source

pub const ILLEGAL_DLL_RELOCATION: Self

Source

pub const DLL_INIT_FAILED_LOGOFF: Self

Source

pub const VALIDATE_CONTINUE: Self

Source

pub const NO_MORE_MATCHES: Self

Source

pub const RANGE_LIST_CONFLICT: Self

Source

pub const SERVER_SID_MISMATCH: Self

Source

pub const CANT_ENABLE_DENY_ONLY: Self

Source

pub const FLOAT_MULTIPLE_FAULTS: Self

Source

pub const FLOAT_MULTIPLE_TRAPS: Self

Source

pub const NOINTERFACE: Self

Source

pub const DRIVER_FAILED_SLEEP: Self

Source

pub const CORRUPT_SYSTEM_FILE: Self

Source

pub const COMMITMENT_MINIMUM: Self

Source

pub const PNP_RESTART_ENUMERATION: Self

Source

pub const SYSTEM_IMAGE_BAD_SIGNATURE: Self

Source

pub const PNP_REBOOT_REQUIRED: Self

Source

pub const INSUFFICIENT_POWER: Self

Source

pub const MULTIPLE_FAULT_VIOLATION: Self

Source

pub const SYSTEM_SHUTDOWN: Self

Source

pub const PORT_NOT_SET: Self

Source

pub const DS_VERSION_CHECK_FAILURE: Self

Source

pub const RANGE_NOT_FOUND: Self

Source

pub const NOT_SAFE_MODE_DRIVER: Self

Source

pub const FAILED_DRIVER_ENTRY: Self

Source

pub const DEVICE_ENUMERATION_ERROR: Self

Source

pub const MOUNT_POINT_NOT_RESOLVED: Self

Source

pub const INVALID_DEVICE_OBJECT_PARAMETER: Self

Source

pub const MCA_OCCURED: Self

Source

pub const DRIVER_DATABASE_ERROR: Self

Source

pub const SYSTEM_HIVE_TOO_LARGE: Self

Source

pub const DRIVER_FAILED_PRIOR_UNLOAD: Self

Source

pub const VOLSNAP_PREPARE_HIBERNATE: Self

Source

pub const HIBERNATION_FAILURE: Self

Source

pub const PWD_TOO_LONG: Self

Source

pub const FILE_SYSTEM_LIMITATION: Self

Source

pub const ASSERTION_FAILURE: Self

Source

pub const ACPI_ERROR: Self

Source

pub const WOW_ASSERTION: Self

Source

pub const PNP_BAD_MPS_TABLE: Self

Source

pub const PNP_TRANSLATION_FAILED: Self

Source

pub const PNP_IRQ_TRANSLATION_FAILED: Self

Source

pub const PNP_INVALID_ID: Self

Source

pub const WAKE_SYSTEM_DEBUGGER: Self

Source

pub const HANDLES_CLOSED: Self

Source

pub const EXTRANEOUS_INFORMATION: Self

Source

pub const RXACT_COMMIT_NECESSARY: Self

Source

pub const MEDIA_CHECK: Self

Source

pub const GUID_SUBSTITUTION_MADE: Self

Source

pub const LONGJUMP: Self

Source

pub const PLUGPLAY_QUERY_VETOED: Self

Source

pub const UNWIND_CONSOLIDATE: Self

Source

pub const REGISTRY_HIVE_RECOVERED: Self

Source

pub const DLL_MIGHT_BE_INSECURE: Self

Source

pub const DLL_MIGHT_BE_INCOMPATIBLE: Self

Source

pub const DBG_EXCEPTION_NOT_HANDLED: Self

Source

pub const DBG_REPLY_LATER: Self

Source

pub const DBG_UNABLE_TO_PROVIDE_HANDLE: Self

Source

pub const DBG_TERMINATE_THREAD: Self

Source

pub const DBG_TERMINATE_PROCESS: Self

Source

pub const DBG_CONTROL_C: Self

Source

pub const DBG_PRINTEXCEPTION_C: Self

Source

pub const DBG_RIPEXCEPTION: Self

Source

pub const DBG_CONTROL_BREAK: Self

Source

pub const DBG_COMMAND_EXCEPTION: Self

Source

pub const OBJECT_NAME_EXISTS: Self

Source

pub const THREAD_WAS_SUSPENDED: Self

Source

pub const IMAGE_NOT_AT_BASE: Self

Source

pub const RXACT_STATE_CREATED: Self

Source

pub const SEGMENT_NOTIFICATION: Self

Source

pub const BAD_CURRENT_DIRECTORY: Self

Source

pub const FT_READ_RECOVERY_FROM_BACKUP: Self

Source

pub const FT_WRITE_RECOVERY: Self

Source

pub const IMAGE_MACHINE_TYPE_MISMATCH: Self

Source

pub const RECEIVE_PARTIAL: Self

Source

pub const RECEIVE_EXPEDITED: Self

Source

pub const RECEIVE_PARTIAL_EXPEDITED: Self

Source

pub const EVENT_DONE: Self

Source

pub const EVENT_PENDING: Self

Source

pub const CHECKING_FILE_SYSTEM: Self

Source

pub const FATAL_APP_EXIT: Self

Source

pub const PREDEFINED_HANDLE: Self

Source

pub const WAS_UNLOCKED: Self

Source

pub const SERVICE_NOTIFICATION: Self

Source

pub const WAS_LOCKED: Self

Source

pub const LOG_HARD_ERROR: Self

Source

pub const ALREADY_WIN32: Self

Source

pub const IMAGE_MACHINE_TYPE_MISMATCH_EXE: Self

Source

pub const NO_YIELD_PERFORMED: Self

Source

pub const TIMER_RESUME_IGNORED: Self

Source

pub const ARBITRATION_UNHANDLED: Self

Source

pub const CARDBUS_NOT_SUPPORTED: Self

Source

pub const MP_PROCESSOR_MISMATCH: Self

Source

pub const HIBERNATED: Self

Source

pub const RESUME_HIBERNATION: Self

Source

pub const FIRMWARE_UPDATED: Self

Source

pub const DRIVERS_LEAKING_LOCKED_PAGES: Self

Source

pub const WAKE_SYSTEM: Self

Source

pub const WAIT_1: Self

Source

pub const WAIT_2: Self

Source

pub const WAIT_3: Self

Source

pub const WAIT_63: Self

Source

pub const ABANDONED_WAIT_0: Self

Source

pub const ABANDONED_WAIT_63: Self

Source

pub const USER_APC: Self

Source

pub const KERNEL_APC: Self

Source

pub const ALERTED: Self

Source

pub const ELEVATION_REQUIRED: Self

Source

pub const REPARSE: Self

Source

pub const OPLOCK_BREAK_IN_PROGRESS: Self

Source

pub const VOLUME_MOUNTED: Self

Source

pub const RXACT_COMMITTED: Self

Source

pub const NOTIFY_CLEANUP: Self

Source

pub const PRIMARY_TRANSPORT_CONNECT_FAILED: Self

Source

pub const PAGE_FAULT_TRANSITION: Self

Source

pub const PAGE_FAULT_DEMAND_ZERO: Self

Source

pub const PAGE_FAULT_COPY_ON_WRITE: Self

Source

pub const PAGE_FAULT_GUARD_PAGE: Self

Source

pub const PAGE_FAULT_PAGING_FILE: Self

Source

pub const CACHE_PAGE_LOCKED: Self

Source

pub const CRASH_DUMP: Self

Source

pub const BUFFER_ALL_ZEROS: Self

Source

pub const REPARSE_OBJECT: Self

Source

pub const RESOURCE_REQUIREMENTS_CHANGED: Self

Source

pub const TRANSLATION_COMPLETE: Self

Source

pub const NOTHING_TO_TERMINATE: Self

Source

pub const PROCESS_NOT_IN_JOB: Self

Source

pub const PROCESS_IN_JOB: Self

Source

pub const VOLSNAP_HIBERNATE_READY: Self

Source

pub const FSFILTER_OP_COMPLETED_SUCCESSFULLY: Self

Source

pub const INTERRUPT_VECTOR_ALREADY_CONNECTED: Self

Source

pub const INTERRUPT_STILL_CONNECTED: Self

Source

pub const WAIT_FOR_OPLOCK: Self

Source

pub const DBG_EXCEPTION_HANDLED: Self

Source

pub const DBG_CONTINUE: Self

Source

pub const CALLBACK_POP_STACK: Self

Source

pub const COMPRESSION_DISABLED: Self

Source

pub const CANTFETCHBACKWARDS: Self

Source

pub const CANTSCROLLBACKWARDS: Self

Source

pub const ROWSNOTRELEASED: Self

Source

pub const BAD_ACCESSOR_FLAGS: Self

Source

pub const ERRORS_ENCOUNTERED: Self

Source

pub const NOT_CAPABLE: Self

Source

pub const REQUEST_OUT_OF_SEQUENCE: Self

Source

pub const VERSION_PARSE_ERROR: Self

Source

pub const BADSTARTPOSITION: Self

Source

pub const MEMORY_HARDWARE: Self

Source

pub const DISK_REPAIR_DISABLED: Self

Source

pub const INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE: Self

Source

pub const SYSTEM_POWERSTATE_TRANSITION: Self

Source

pub const SYSTEM_POWERSTATE_COMPLEX_TRANSITION: Self

Source

pub const MCA_EXCEPTION: Self

Source

pub const ACCESS_AUDIT_BY_POLICY: Self

Source

pub const ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY: Self

Source

pub const ABANDON_HIBERFILE: Self

Source

pub const LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED: Self

Source

pub const LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR: Self

Source

pub const LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR: Self

Source

pub const BAD_MCFG_TABLE: Self

Source

pub const DISK_REPAIR_REDIRECTED: Self

Source

pub const DISK_REPAIR_UNSUCCESSFUL: Self

Source

pub const CORRUPT_LOG_OVERFULL: Self

Source

pub const CORRUPT_LOG_CORRUPTED: Self

Source

pub const CORRUPT_LOG_UNAVAILABLE: Self

Source

pub const CORRUPT_LOG_DELETED_FULL: Self

Source

pub const CORRUPT_LOG_CLEARED: Self

Source

pub const ORPHAN_NAME_EXHAUSTED: Self

Source

pub const OPLOCK_SWITCHED_TO_NEW_HANDLE: Self

Source

pub const CANNOT_GRANT_REQUESTED_OPLOCK: Self

Source

pub const CANNOT_BREAK_OPLOCK: Self

Source

pub const OPLOCK_HANDLE_CLOSED: Self

Source

pub const NO_ACE_CONDITION: Self

Source

pub const INVALID_ACE_CONDITION: Self

Source

pub const FILE_HANDLE_REVOKED: Self

Source

pub const IMAGE_AT_DIFFERENT_BASE: Self

Source

pub const ENCRYPTED_IO_NOT_POSSIBLE: Self

Source

pub const FILE_METADATA_OPTIMIZATION_IN_PROGRESS: Self

Source

pub const QUOTA_ACTIVITY: Self

Source

pub const HANDLE_REVOKED: Self

Source

pub const CALLBACK_INVOKE_INLINE: Self

Source

pub const CPU_SET_INVALID: Self

Source

pub const ENCLAVE_NOT_TERMINATED: Self

Source

pub const ENCLAVE_VIOLATION: Self

Source

pub const EA_ACCESS_DENIED: Self

Source

pub const OPERATION_ABORTED: Self

Source

pub const IO_INCOMPLETE: Self

Source

pub const IO_PENDING: Self

Source

pub const NOACCESS: Self

Source

pub const SWAPERROR: Self

Source

pub const STACK_OVERFLOW: Self

Source

pub const INVALID_MESSAGE: Self

Source

pub const CAN_NOT_COMPLETE: Self

Source

pub const INVALID_FLAGS: Self

Source

pub const UNRECOGNIZED_VOLUME: Self

Source

pub const FILE_INVALID: Self

Source

pub const FULLSCREEN_MODE: Self

Source

pub const NO_TOKEN: Self

Source

pub const BADDB: Self

Source

pub const BADKEY: Self

Source

pub const CANTOPEN: Self

Source

pub const CANTREAD: Self

Source

pub const CANTWRITE: Self

Source

pub const REGISTRY_RECOVERED: Self

Source

pub const REGISTRY_CORRUPT: Self

Source

pub const REGISTRY_IO_FAILED: Self

Source

pub const NOT_REGISTRY_FILE: Self

Source

pub const KEY_DELETED: Self

Source

pub const NO_LOG_SPACE: Self

Source

pub const KEY_HAS_CHILDREN: Self

Source

pub const CHILD_MUST_BE_VOLATILE: Self

Source

pub const NOTIFY_ENUM_DIR: Self

Source

pub const DEPENDENT_SERVICES_RUNNING: Self

Source

pub const INVALID_SERVICE_CONTROL: Self

Source

pub const SERVICE_REQUEST_TIMEOUT: Self

Source

pub const SERVICE_NO_THREAD: Self

Source

pub const SERVICE_DATABASE_LOCKED: Self

Source

pub const SERVICE_ALREADY_RUNNING: Self

Source

pub const INVALID_SERVICE_ACCOUNT: Self

Source

pub const SERVICE_DISABLED: Self

Source

pub const CIRCULAR_DEPENDENCY: Self

Source

pub const SERVICE_DOES_NOT_EXIST: Self

Source

pub const SERVICE_CANNOT_ACCEPT_CTRL: Self

Source

pub const SERVICE_NOT_ACTIVE: Self

Source

pub const FAILED_SERVICE_CONTROLLER_CONNECT: Self

Source

pub const EXCEPTION_IN_SERVICE: Self

Source

pub const DATABASE_DOES_NOT_EXIST: Self

Source

pub const SERVICE_SPECIFIC_ERROR: Self

Source

pub const PROCESS_ABORTED: Self

Source

pub const SERVICE_DEPENDENCY_FAIL: Self

Source

pub const SERVICE_LOGON_FAILED: Self

Source

pub const SERVICE_START_HANG: Self

Source

pub const INVALID_SERVICE_LOCK: Self

Source

pub const SERVICE_MARKED_FOR_DELETE: Self

Source

pub const SERVICE_EXISTS: Self

Source

pub const ALREADY_RUNNING_LKG: Self

Source

pub const SERVICE_DEPENDENCY_DELETED: Self

Source

pub const BOOT_ALREADY_ACCEPTED: Self

Source

pub const SERVICE_NEVER_STARTED: Self

Source

pub const DUPLICATE_SERVICE_NAME: Self

Source

pub const DIFFERENT_SERVICE_ACCOUNT: Self

Source

pub const CANNOT_DETECT_DRIVER_FAILURE: Self

Source

pub const CANNOT_DETECT_PROCESS_ABORT: Self

Source

pub const NO_RECOVERY_PROGRAM: Self

Source

pub const SERVICE_NOT_IN_EXE: Self

Source

pub const NOT_SAFEBOOT_SERVICE: Self

Source

pub const END_OF_MEDIA: Self

Source

pub const FILEMARK_DETECTED: Self

Source

pub const BEGINNING_OF_MEDIA: Self

Source

pub const SETMARK_DETECTED: Self

Source

pub const NO_DATA_DETECTED: Self

Source

pub const PARTITION_FAILURE: Self

Source

pub const INVALID_BLOCK_LENGTH: Self

Source

pub const DEVICE_NOT_PARTITIONED: Self

Source

pub const UNABLE_TO_LOCK_MEDIA: Self

Source

pub const UNABLE_TO_UNLOAD_MEDIA: Self

Source

pub const MEDIA_CHANGED: Self

Source

pub const BUS_RESET: Self

Source

pub const NO_MEDIA_IN_DRIVE: Self

Source

pub const NO_UNICODE_TRANSLATION: Self

Source

pub const DLL_INIT_FAILED: Self

Source

pub const SHUTDOWN_IN_PROGRESS: Self

Source

pub const NO_SHUTDOWN_IN_PROGRESS: Self

Source

pub const IO_DEVICE: Self

Source

pub const SERIAL_NO_DEVICE: Self

Source

pub const IRQ_BUSY: Self

Source

pub const MORE_WRITES: Self

Source

pub const COUNTER_TIMEOUT: Self

Source

pub const FLOPPY_ID_MARK_NOT_FOUND: Self

Source

pub const FLOPPY_WRONG_CYLINDER: Self

Source

pub const FLOPPY_UNKNOWN_ERROR: Self

Source

pub const FLOPPY_BAD_REGISTERS: Self

Source

pub const DISK_RECALIBRATE_FAILED: Self

Source

pub const DISK_OPERATION_FAILED: Self

Source

pub const DISK_RESET_FAILED: Self

Source

pub const EOM_OVERFLOW: Self

Source

pub const NOT_ENOUGH_SERVER_MEMORY: Self

Source

pub const POSSIBLE_DEADLOCK: Self

Source

pub const MAPPED_ALIGNMENT: Self

Source

pub const SET_POWER_STATE_VETOED: Self

Source

pub const SET_POWER_STATE_FAILED: Self

Source

pub const OLD_WIN_VERSION: Self

Source

pub const APP_WRONG_OS: Self

Source

pub const SINGLE_INSTANCE_APP: Self

Source

pub const RMODE_APP: Self

Source

pub const INVALID_DLL: Self

Source

pub const NO_ASSOCIATION: Self

Source

pub const DDE_FAIL: Self

Source

pub const DLL_NOT_FOUND: Self

Source

pub const NO_MORE_USER_HANDLES: Self

Source

pub const MESSAGE_SYNC_ONLY: Self

Source

pub const SOURCE_ELEMENT_EMPTY: Self

Source

pub const DESTINATION_ELEMENT_FULL: Self

Source

pub const ILLEGAL_ELEMENT_ADDRESS: Self

Source

pub const MAGAZINE_NOT_PRESENT: Self

Source

pub const DEVICE_REINITIALIZATION_NEEDED: Self

Source

pub const DEVICE_REQUIRES_CLEANING: Self

Source

pub const DEVICE_DOOR_OPEN: Self

Source

pub const DEVICE_NOT_CONNECTED: Self

Source

pub const NOT_FOUND: Self

Source

pub const NO_MATCH: Self

Source

pub const SET_NOT_FOUND: Self

Source

pub const POINT_NOT_FOUND: Self

Source

pub const NO_TRACKING_SERVICE: Self

Source

pub const NO_VOLUME_ID: Self

Source

pub const UNABLE_TO_REMOVE_REPLACED: Self

Source

pub const UNABLE_TO_MOVE_REPLACEMENT: Self

Source

pub const UNABLE_TO_MOVE_REPLACEMENT_2: Self

Source

pub const JOURNAL_DELETE_IN_PROGRESS: Self

Source

pub const JOURNAL_NOT_ACTIVE: Self

Source

pub const POTENTIAL_FILE_FOUND: Self

Source

pub const JOURNAL_ENTRY_DELETED: Self

Source

pub const SHUTDOWN_IS_SCHEDULED: Self

Source

pub const SHUTDOWN_USERS_LOGGED_ON: Self

Source

pub const BAD_DEVICE: Self

Source

pub const CONNECTION_UNAVAIL: Self

Source

pub const DEVICE_ALREADY_REMEMBERED: Self

Source

pub const NO_NET_OR_BAD_PATH: Self

Source

pub const BAD_PROVIDER: Self

Source

pub const CANNOT_OPEN_PROFILE: Self

Source

pub const BAD_PROFILE: Self

Source

pub const NOT_CONTAINER: Self

Source

pub const EXTENDED_ERROR: Self

Source

pub const INVALID_GROUPNAME: Self

Source

pub const INVALID_COMPUTERNAME: Self

Source

pub const INVALID_EVENTNAME: Self

Source

pub const INVALID_DOMAINNAME: Self

Source

pub const INVALID_SERVICENAME: Self

Source

pub const INVALID_NETNAME: Self

Source

pub const INVALID_SHARENAME: Self

Source

pub const INVALID_PASSWORDNAME: Self

Source

pub const INVALID_MESSAGENAME: Self

Source

pub const INVALID_MESSAGEDEST: Self

Source

pub const SESSION_CREDENTIAL_CONFLICT: Self

Source

pub const REMOTE_SESSION_LIMIT_EXCEEDED: Self

Source

pub const DUP_DOMAINNAME: Self

Source

pub const NO_NETWORK: Self

Source

pub const CANCELLED: Self

Source

pub const USER_MAPPED_FILE: Self

Source

pub const CONNECTION_REFUSED: Self

Source

pub const GRACEFUL_DISCONNECT: Self

Source

pub const ADDRESS_ALREADY_ASSOCIATED: Self

Source

pub const ADDRESS_NOT_ASSOCIATED: Self

Source

pub const CONNECTION_INVALID: Self

Source

pub const CONNECTION_ACTIVE: Self

Source

pub const NETWORK_UNREACHABLE: Self

Source

pub const HOST_UNREACHABLE: Self

Source

pub const PROTOCOL_UNREACHABLE: Self

Source

pub const PORT_UNREACHABLE: Self

Source

pub const REQUEST_ABORTED: Self

Source

pub const CONNECTION_ABORTED: Self

Source

pub const RETRY: Self

Source

pub const CONNECTION_COUNT_LIMIT: Self

Source

pub const LOGIN_TIME_RESTRICTION: Self

Source

pub const LOGIN_WKSTA_RESTRICTION: Self

Source

pub const INCORRECT_ADDRESS: Self

Source

pub const ALREADY_REGISTERED: Self

Source

pub const SERVICE_NOT_FOUND: Self

Source

pub const NOT_AUTHENTICATED: Self

Source

pub const NOT_LOGGED_ON: Self

Source

pub const CONTINUE: Self

Source

pub const ALREADY_INITIALIZED: Self

Source

pub const NO_MORE_DEVICES: Self

Source

pub const NO_SUCH_SITE: Self

Source

pub const DOMAIN_CONTROLLER_EXISTS: Self

Source

pub const ONLY_IF_CONNECTED: Self

Source

pub const OVERRIDE_NOCHANGES: Self

Source

pub const BAD_USER_PROFILE: Self

Source

pub const NOT_SUPPORTED_ON_SBS: Self

Source

pub const SERVER_SHUTDOWN_IN_PROGRESS: Self

Source

pub const HOST_DOWN: Self

Source

pub const NON_ACCOUNT_SID: Self

Source

pub const NON_DOMAIN_SID: Self

Source

pub const APPHELP_BLOCK: Self

Source

pub const ACCESS_DISABLED_BY_POLICY: Self

Source

pub const REG_NAT_CONSUMPTION: Self

Source

pub const CSCSHARE_OFFLINE: Self

Source

pub const PKINIT_FAILURE: Self

Source

pub const SMARTCARD_SUBSYSTEM_FAILURE: Self

Source

pub const DOWNGRADE_DETECTED: Self

Source

pub const MACHINE_LOCKED: Self

Source

pub const SMB_GUEST_LOGON_BLOCKED: Self

Source

pub const CALLBACK_SUPPLIED_INVALID_DATA: Self

Source

pub const SYNC_FOREGROUND_REFRESH_REQUIRED: Self

Source

pub const DRIVER_BLOCKED: Self

Source

pub const INVALID_IMPORT_OF_NON_DLL: Self

Source

pub const ACCESS_DISABLED_WEBBLADE: Self

Source

pub const ACCESS_DISABLED_WEBBLADE_TAMPER: Self

Source

pub const RECOVERY_FAILURE: Self

Source

pub const ALREADY_FIBER: Self

Source

pub const ALREADY_THREAD: Self

Source

pub const STACK_BUFFER_OVERRUN: Self

Source

pub const PARAMETER_QUOTA_EXCEEDED: Self

Source

pub const DEBUGGER_INACTIVE: Self

Source

pub const DELAY_LOAD_FAILED: Self

Source

pub const VDM_DISALLOWED: Self

Source

pub const UNIDENTIFIED_ERROR: Self

Source

pub const INVALID_CRUNTIME_PARAMETER: Self

Source

pub const BEYOND_VDL: Self

Source

pub const INCOMPATIBLE_SERVICE_SID_TYPE: Self

Source

pub const DRIVER_PROCESS_TERMINATED: Self

Source

pub const IMPLEMENTATION_LIMIT: Self

Source

pub const PROCESS_IS_PROTECTED: Self

Source

pub const SERVICE_NOTIFY_CLIENT_LAGGING: Self

Source

pub const DISK_QUOTA_EXCEEDED: Self

Source

pub const CONTENT_BLOCKED: Self

Source

pub const INCOMPATIBLE_SERVICE_PRIVILEGE: Self

Source

pub const APP_HANG: Self

Source

pub const INVALID_LABEL: Self

Source

pub const NOT_ALL_ASSIGNED: Self

Source

pub const SOME_NOT_MAPPED: Self

Source

pub const NO_QUOTAS_FOR_ACCOUNT: Self

Source

pub const LOCAL_USER_SESSION_KEY: Self

Source

pub const NULL_LM_PASSWORD: Self

Source

pub const UNKNOWN_REVISION: Self

Source

pub const REVISION_MISMATCH: Self

Source

pub const INVALID_OWNER: Self

Source

pub const INVALID_PRIMARY_GROUP: Self

Source

pub const NO_IMPERSONATION_TOKEN: Self

Source

pub const CANT_DISABLE_MANDATORY: Self

Source

pub const NO_LOGON_SERVERS: Self

Source

pub const NO_SUCH_LOGON_SESSION: Self

Source

pub const NO_SUCH_PRIVILEGE: Self

Source

pub const PRIVILEGE_NOT_HELD: Self

Source

pub const INVALID_ACCOUNT_NAME: Self

Source

pub const USER_EXISTS: Self

Source

pub const NO_SUCH_USER: Self

Source

pub const GROUP_EXISTS: Self

Source

pub const NO_SUCH_GROUP: Self

Source

pub const MEMBER_IN_GROUP: Self

Source

pub const MEMBER_NOT_IN_GROUP: Self

Source

pub const LAST_ADMIN: Self

Source

pub const WRONG_PASSWORD: Self

Source

pub const ILL_FORMED_PASSWORD: Self

Source

pub const PASSWORD_RESTRICTION: Self

Source

pub const LOGON_FAILURE: Self

Source

pub const ACCOUNT_RESTRICTION: Self

Source

pub const INVALID_LOGON_HOURS: Self

Source

pub const INVALID_WORKSTATION: Self

Source

pub const PASSWORD_EXPIRED: Self

Source

pub const ACCOUNT_DISABLED: Self

Source

pub const NONE_MAPPED: Self

Source

pub const TOO_MANY_LUIDS_REQUESTED: Self

Source

pub const LUIDS_EXHAUSTED: Self

Source

pub const INVALID_SUB_AUTHORITY: Self

Source

pub const INVALID_ACL: Self

Source

pub const INVALID_SID: Self

Source

pub const INVALID_SECURITY_DESCR: Self

Source

pub const BAD_INHERITANCE_ACL: Self

Source

pub const SERVER_DISABLED: Self

Source

pub const SERVER_NOT_DISABLED: Self

Source

pub const INVALID_ID_AUTHORITY: Self

Source

pub const ALLOTTED_SPACE_EXCEEDED: Self

Source

pub const INVALID_GROUP_ATTRIBUTES: Self

Source

pub const BAD_IMPERSONATION_LEVEL: Self

Source

pub const CANT_OPEN_ANONYMOUS: Self

Source

pub const BAD_VALIDATION_CLASS: Self

Source

pub const BAD_TOKEN_TYPE: Self

Source

pub const NO_SECURITY_ON_OBJECT: Self

Source

pub const CANT_ACCESS_DOMAIN_INFO: Self

Source

pub const INVALID_SERVER_STATE: Self

Source

pub const INVALID_DOMAIN_STATE: Self

Source

pub const INVALID_DOMAIN_ROLE: Self

Source

pub const NO_SUCH_DOMAIN: Self

Source

pub const DOMAIN_EXISTS: Self

Source

pub const DOMAIN_LIMIT_EXCEEDED: Self

Source

pub const INTERNAL_DB_CORRUPTION: Self

Source

pub const INTERNAL_ERROR: Self

Source

pub const GENERIC_NOT_MAPPED: Self

Source

pub const BAD_DESCRIPTOR_FORMAT: Self

Source

pub const NOT_LOGON_PROCESS: Self

Source

pub const LOGON_SESSION_EXISTS: Self

Source

pub const NO_SUCH_PACKAGE: Self

Source

pub const BAD_LOGON_SESSION_STATE: Self

Source

pub const LOGON_SESSION_COLLISION: Self

Source

pub const INVALID_LOGON_TYPE: Self

Source

pub const CANNOT_IMPERSONATE: Self

Source

pub const RXACT_INVALID_STATE: Self

Source

pub const RXACT_COMMIT_FAILURE: Self

Source

pub const SPECIAL_ACCOUNT: Self

Source

pub const SPECIAL_GROUP: Self

Source

pub const SPECIAL_USER: Self

Source

pub const MEMBERS_PRIMARY_GROUP: Self

Source

pub const TOKEN_ALREADY_IN_USE: Self

Source

pub const NO_SUCH_ALIAS: Self

Source

pub const MEMBER_NOT_IN_ALIAS: Self

Source

pub const MEMBER_IN_ALIAS: Self

Source

pub const ALIAS_EXISTS: Self

Source

pub const LOGON_NOT_GRANTED: Self

Source

pub const TOO_MANY_SECRETS: Self

Source

pub const SECRET_TOO_LONG: Self

Source

pub const INTERNAL_DB_ERROR: Self

Source

pub const TOO_MANY_CONTEXT_IDS: Self

Source

pub const LOGON_TYPE_NOT_GRANTED: Self

Source

pub const NT_CROSS_ENCRYPTION_REQUIRED: Self

Source

pub const NO_SUCH_MEMBER: Self

Source

pub const INVALID_MEMBER: Self

Source

pub const TOO_MANY_SIDS: Self

Source

pub const LM_CROSS_ENCRYPTION_REQUIRED: Self

Source

pub const NO_INHERITANCE: Self

Source

pub const FILE_CORRUPT: Self

Source

pub const DISK_CORRUPT: Self

Source

pub const NO_USER_SESSION_KEY: Self

Source

pub const LICENSE_QUOTA_EXCEEDED: Self

Source

pub const WRONG_TARGET_NAME: Self

Source

pub const MUTUAL_AUTH_FAILED: Self

Source

pub const TIME_SKEW: Self

Source

pub const CURRENT_DOMAIN_NOT_ALLOWED: Self

Source

pub const INVALID_WINDOW_HANDLE: Self

Source

pub const INVALID_MENU_HANDLE: Self

Source

pub const INVALID_CURSOR_HANDLE: Self

Source

pub const INVALID_ACCEL_HANDLE: Self

Source

pub const INVALID_HOOK_HANDLE: Self

Source

pub const INVALID_DWP_HANDLE: Self

Source

pub const TLW_WITH_WSCHILD: Self

Source

pub const CANNOT_FIND_WND_CLASS: Self

Source

pub const WINDOW_OF_OTHER_THREAD: Self

Source

pub const HOTKEY_ALREADY_REGISTERED: Self

Source

pub const CLASS_ALREADY_EXISTS: Self

Source

pub const CLASS_DOES_NOT_EXIST: Self

Source

pub const CLASS_HAS_WINDOWS: Self

Source

pub const INVALID_INDEX: Self

Source

pub const INVALID_ICON_HANDLE: Self

Source

pub const PRIVATE_DIALOG_INDEX: Self

Source

pub const LISTBOX_ID_NOT_FOUND: Self

Source

pub const NO_WILDCARD_CHARACTERS: Self

Source

pub const CLIPBOARD_NOT_OPEN: Self

Source

pub const HOTKEY_NOT_REGISTERED: Self

Source

pub const WINDOW_NOT_DIALOG: Self

Source

pub const CONTROL_ID_NOT_FOUND: Self

Source

pub const INVALID_COMBOBOX_MESSAGE: Self

Source

pub const WINDOW_NOT_COMBOBOX: Self

Source

pub const INVALID_EDIT_HEIGHT: Self

Source

pub const DC_NOT_FOUND: Self

Source

pub const INVALID_HOOK_FILTER: Self

Source

pub const INVALID_FILTER_PROC: Self

Source

pub const HOOK_NEEDS_HMOD: Self

Source

pub const GLOBAL_ONLY_HOOK: Self

Source

pub const JOURNAL_HOOK_SET: Self

Source

pub const HOOK_NOT_INSTALLED: Self

Source

pub const INVALID_LB_MESSAGE: Self

Source

pub const SETCOUNT_ON_BAD_LB: Self

Source

pub const LB_WITHOUT_TABSTOPS: Self

Source

pub const DESTROY_OBJECT_OF_OTHER_THREAD: Self

Source

pub const CHILD_WINDOW_MENU: Self

Source

pub const NO_SYSTEM_MENU: Self

Source

pub const INVALID_MSGBOX_STYLE: Self

Source

pub const INVALID_SPI_VALUE: Self

Source

pub const SCREEN_ALREADY_LOCKED: Self

Source

pub const HWNDS_HAVE_DIFF_PARENT: Self

Source

pub const NOT_CHILD_WINDOW: Self

Source

pub const INVALID_GW_COMMAND: Self

Source

pub const INVALID_THREAD_ID: Self

Source

pub const NON_MDICHILD_WINDOW: Self

Source

pub const POPUP_ALREADY_ACTIVE: Self

Source

pub const NO_SCROLLBARS: Self

Source

pub const INVALID_SCROLLBAR_RANGE: Self

Source

pub const INVALID_SHOWWIN_COMMAND: Self

Source

pub const NO_SYSTEM_RESOURCES: Self

Source

pub const NONPAGED_SYSTEM_RESOURCES: Self

Source

pub const PAGED_SYSTEM_RESOURCES: Self

Source

pub const WORKING_SET_QUOTA: Self

Source

pub const PAGEFILE_QUOTA: Self

Source

pub const COMMITMENT_LIMIT: Self

Source

pub const MENU_ITEM_NOT_FOUND: Self

Source

pub const INVALID_KEYBOARD_HANDLE: Self

Source

pub const HOOK_TYPE_NOT_ALLOWED: Self

Source

pub const REQUIRES_INTERACTIVE_WINDOWSTATION: Self

Source

pub const TIMEOUT: Self

Source

pub const INVALID_MONITOR_HANDLE: Self

Source

pub const INCORRECT_SIZE: Self

Source

pub const XML_PARSE_ERROR: Self

Source

pub const XMLDSIG_ERROR: Self

Source

pub const RESTART_APPLICATION: Self

Source

pub const WRONG_COMPARTMENT: Self

Source

pub const AUTHIP_FAILURE: Self

Source

pub const NO_NVRAM_RESOURCES: Self

Source

pub const NOT_GUI_PROCESS: Self

Source

pub const EVENTLOG_FILE_CORRUPT: Self

Source

pub const EVENTLOG_CANT_START: Self

Source

pub const LOG_FILE_FULL: Self

Source

pub const EVENTLOG_FILE_CHANGED: Self

Source

pub const CONTAINER_ASSIGNED: Self

Source

pub const JOB_NO_CONTAINER: Self

Source

pub const INVALID_TASK_NAME: Self

Source

pub const INVALID_TASK_INDEX: Self

Source

pub const THREAD_ALREADY_IN_TASK: Self

Source

pub const INSTALL_SERVICE_FAILURE: Self

Source

pub const INSTALL_USEREXIT: Self

Source

pub const INSTALL_FAILURE: Self

Source

pub const INSTALL_SUSPEND: Self

Source

pub const UNKNOWN_PRODUCT: Self

Source

pub const UNKNOWN_FEATURE: Self

Source

pub const UNKNOWN_COMPONENT: Self

Source

pub const UNKNOWN_PROPERTY: Self

Source

pub const INVALID_HANDLE_STATE: Self

Source

pub const BAD_CONFIGURATION: Self

Source

pub const INDEX_ABSENT: Self

Source

pub const INSTALL_SOURCE_ABSENT: Self

Source

pub const INSTALL_PACKAGE_VERSION: Self

Source

pub const PRODUCT_UNINSTALLED: Self

Source

pub const BAD_QUERY_SYNTAX: Self

Source

pub const INVALID_FIELD: Self

Source

pub const DEVICE_REMOVED: Self

Source

pub const INSTALL_ALREADY_RUNNING: Self

Source

pub const INSTALL_PACKAGE_OPEN_FAILED: Self

Source

pub const INSTALL_PACKAGE_INVALID: Self

Source

pub const INSTALL_UI_FAILURE: Self

Source

pub const INSTALL_LOG_FAILURE: Self

Source

pub const INSTALL_LANGUAGE_UNSUPPORTED: Self

Source

pub const INSTALL_TRANSFORM_FAILURE: Self

Source

pub const INSTALL_PACKAGE_REJECTED: Self

Source

pub const FUNCTION_NOT_CALLED: Self

Source

pub const FUNCTION_FAILED: Self

Source

pub const INVALID_TABLE: Self

Source

pub const DATATYPE_MISMATCH: Self

Source

pub const UNSUPPORTED_TYPE: Self

Source

pub const CREATE_FAILED: Self

Source

pub const INSTALL_TEMP_UNWRITABLE: Self

Source

pub const INSTALL_PLATFORM_UNSUPPORTED: Self

Source

pub const INSTALL_NOTUSED: Self

Source

pub const PATCH_PACKAGE_OPEN_FAILED: Self

Source

pub const PATCH_PACKAGE_INVALID: Self

Source

pub const PATCH_PACKAGE_UNSUPPORTED: Self

Source

pub const PRODUCT_VERSION: Self

Source

pub const INVALID_COMMAND_LINE: Self

Source

pub const INSTALL_REMOTE_DISALLOWED: Self

Source

pub const SUCCESS_REBOOT_INITIATED: Self

Source

pub const PATCH_TARGET_NOT_FOUND: Self

Source

pub const PATCH_PACKAGE_REJECTED: Self

Source

pub const INSTALL_TRANSFORM_REJECTED: Self

Source

pub const INSTALL_REMOTE_PROHIBITED: Self

Source

pub const PATCH_REMOVAL_UNSUPPORTED: Self

Source

pub const UNKNOWN_PATCH: Self

Source

pub const PATCH_NO_SEQUENCE: Self

Source

pub const PATCH_REMOVAL_DISALLOWED: Self

Source

pub const INVALID_PATCH_XML: Self

Source

pub const PATCH_MANAGED_ADVERTISED_PRODUCT: Self

Source

pub const INSTALL_SERVICE_SAFEBOOT: Self

Source

pub const FAIL_FAST_EXCEPTION: Self

Source

pub const INSTALL_REJECTED: Self

Source

pub const DYNAMIC_CODE_BLOCKED: Self

Source

pub const NOT_SAME_OBJECT: Self

Source

pub const STRICT_CFG_VIOLATION: Self

Source

pub const SET_CONTEXT_DENIED: Self

Source

pub const CROSS_PARTITION_VIOLATION: Self

Source

pub const INVALID_USER_BUFFER: Self

Source

pub const UNRECOGNIZED_MEDIA: Self

Source

pub const NO_TRUST_LSA_SECRET: Self

Source

pub const NO_TRUST_SAM_ACCOUNT: Self

Source

pub const TRUSTED_DOMAIN_FAILURE: Self

Source

pub const TRUSTED_RELATIONSHIP_FAILURE: Self

Source

pub const TRUST_FAILURE: Self

Source

pub const NETLOGON_NOT_STARTED: Self

Source

pub const ACCOUNT_EXPIRED: Self

Source

pub const REDIRECTOR_HAS_OPEN_HANDLES: Self

Source

pub const PRINTER_DRIVER_ALREADY_INSTALLED: Self

Source

pub const UNKNOWN_PORT: Self

Source

pub const UNKNOWN_PRINTER_DRIVER: Self

Source

pub const UNKNOWN_PRINTPROCESSOR: Self

Source

pub const INVALID_SEPARATOR_FILE: Self

Source

pub const INVALID_PRIORITY: Self

Source

pub const INVALID_PRINTER_NAME: Self

Source

pub const PRINTER_ALREADY_EXISTS: Self

Source

pub const INVALID_PRINTER_COMMAND: Self

Source

pub const INVALID_DATATYPE: Self

Source

pub const INVALID_ENVIRONMENT: Self

Source

pub const NOLOGON_INTERDOMAIN_TRUST_ACCOUNT: Self

Source

pub const NOLOGON_WORKSTATION_TRUST_ACCOUNT: Self

Source

pub const NOLOGON_SERVER_TRUST_ACCOUNT: Self

Source

pub const DOMAIN_TRUST_INCONSISTENT: Self

Source

pub const SERVER_HAS_OPEN_HANDLES: Self

Source

pub const RESOURCE_DATA_NOT_FOUND: Self

Source

pub const RESOURCE_TYPE_NOT_FOUND: Self

Source

pub const RESOURCE_NAME_NOT_FOUND: Self

Source

pub const RESOURCE_LANG_NOT_FOUND: Self

Source

pub const NOT_ENOUGH_QUOTA: Self

Source

pub const INVALID_TIME: Self

Source

pub const INVALID_FORM_NAME: Self

Source

pub const INVALID_FORM_SIZE: Self

Source

pub const ALREADY_WAITING: Self

Source

pub const PRINTER_DELETED: Self

Source

pub const INVALID_PRINTER_STATE: Self

Source

pub const PASSWORD_MUST_CHANGE: Self

Source

pub const DOMAIN_CONTROLLER_NOT_FOUND: Self

Source

pub const ACCOUNT_LOCKED_OUT: Self

Source

pub const NO_SITENAME: Self

Source

pub const CANT_ACCESS_FILE: Self

Source

pub const CANT_RESOLVE_FILENAME: Self

Source

pub const KM_DRIVER_BLOCKED: Self

Source

pub const CONTEXT_EXPIRED: Self

Source

pub const PER_USER_TRUST_QUOTA_EXCEEDED: Self

Source

pub const ALL_USER_TRUST_QUOTA_EXCEEDED: Self

Source

pub const USER_DELETE_TRUST_QUOTA_EXCEEDED: Self

Source

pub const AUTHENTICATION_FIREWALL_FAILED: Self

Source

pub const REMOTE_PRINT_CONNECTIONS_BLOCKED: Self

Source

pub const NTLM_BLOCKED: Self

Source

pub const PASSWORD_CHANGE_REQUIRED: Self

Source

pub const LOST_MODE_LOGON_RESTRICTION: Self

Source

pub const INVALID_PIXEL_FORMAT: Self

Source

pub const BAD_DRIVER: Self

Source

pub const INVALID_WINDOW_STYLE: Self

Source

pub const METAFILE_NOT_SUPPORTED: Self

Source

pub const TRANSFORM_NOT_SUPPORTED: Self

Source

pub const CLIPPING_NOT_SUPPORTED: Self

Source

pub const INVALID_CMM: Self

Source

pub const INVALID_PROFILE: Self

Source

pub const TAG_NOT_FOUND: Self

Source

pub const TAG_NOT_PRESENT: Self

Source

pub const DUPLICATE_TAG: Self

Source

pub const PROFILE_NOT_ASSOCIATED_WITH_DEVICE: Self

Source

pub const PROFILE_NOT_FOUND: Self

Source

pub const INVALID_COLORSPACE: Self

Source

pub const ICM_NOT_ENABLED: Self

Source

pub const DELETING_ICM_XFORM: Self

Source

pub const INVALID_TRANSFORM: Self

Source

pub const COLORSPACE_MISMATCH: Self

Source

pub const INVALID_COLORINDEX: Self

Source

pub const PROFILE_DOES_NOT_MATCH_DEVICE: Self

Source

pub const CONNECTED_OTHER_PASSWORD: Self

Source

pub const CONNECTED_OTHER_PASSWORD_DEFAULT: Self

Source

pub const BAD_USERNAME: Self

Source

pub const NOT_CONNECTED: Self

Source

pub const OPEN_FILES: Self

Source

pub const ACTIVE_CONNECTIONS: Self

Source

pub const DEVICE_IN_USE: Self

Source

pub const UNKNOWN_PRINT_MONITOR: Self

Source

pub const PRINTER_DRIVER_IN_USE: Self

Source

pub const SPOOL_FILE_NOT_FOUND: Self

Source

pub const SPL_NO_STARTDOC: Self

Source

pub const SPL_NO_ADDJOB: Self

Source

pub const PRINT_PROCESSOR_ALREADY_INSTALLED: Self

Source

pub const PRINT_MONITOR_ALREADY_INSTALLED: Self

Source

pub const INVALID_PRINT_MONITOR: Self

Source

pub const PRINT_MONITOR_IN_USE: Self

Source

pub const PRINTER_HAS_JOBS_QUEUED: Self

Source

pub const SUCCESS_REBOOT_REQUIRED: Self

Source

pub const SUCCESS_RESTART_REQUIRED: Self

Source

pub const PRINTER_NOT_FOUND: Self

Source

pub const PRINTER_DRIVER_WARNED: Self

Source

pub const PRINTER_DRIVER_BLOCKED: Self

Source

pub const PRINTER_DRIVER_PACKAGE_IN_USE: Self

Source

pub const CORE_DRIVER_PACKAGE_NOT_FOUND: Self

Source

pub const FAIL_REBOOT_REQUIRED: Self

Source

pub const FAIL_REBOOT_INITIATED: Self

Source

pub const PRINTER_DRIVER_DOWNLOAD_NEEDED: Self

Source

pub const PRINT_JOB_RESTART_REQUIRED: Self

Source

pub const INVALID_PRINTER_DRIVER_MANIFEST: Self

Source

pub const PRINTER_NOT_SHAREABLE: Self

Source

pub const REQUEST_PAUSED: Self

Source

pub const APPEXEC_CONDITION_NOT_SATISFIED: Self

Source

pub const APPEXEC_HANDLE_INVALIDATED: Self

Source

pub const APPEXEC_INVALID_HOST_GENERATION: Self

Source

pub const APPEXEC_UNEXPECTED_PROCESS_REGISTRATION: Self

Source

pub const APPEXEC_INVALID_HOST_STATE: Self

Source

pub const APPEXEC_NO_DONOR: Self

Source

pub const APPEXEC_HOST_ID_MISMATCH: Self

Source

pub const APPEXEC_UNKNOWN_USER: Self

Source

pub const IO_REISSUE_AS_CACHED: Self

Source

pub const WINS_INTERNAL: Self

Source

pub const CAN_NOT_DEL_LOCAL_WINS: Self

Source

pub const STATIC_INIT: Self

Source

pub const INC_BACKUP: Self

Source

pub const FULL_BACKUP: Self

Source

pub const REC_NON_EXISTENT: Self

Source

pub const RPL_NOT_ALLOWED: Self

Source

pub const DHCP_ADDRESS_CONFLICT: Self

Source

pub const WMI_GUID_NOT_FOUND: Self

Source

pub const WMI_INSTANCE_NOT_FOUND: Self

Source

pub const WMI_ITEMID_NOT_FOUND: Self

Source

pub const WMI_TRY_AGAIN: Self

Source

pub const WMI_DP_NOT_FOUND: Self

Source

pub const WMI_UNRESOLVED_INSTANCE_REF: Self

Source

pub const WMI_ALREADY_ENABLED: Self

Source

pub const WMI_GUID_DISCONNECTED: Self

Source

pub const WMI_SERVER_UNAVAILABLE: Self

Source

pub const WMI_DP_FAILED: Self

Source

pub const WMI_INVALID_MOF: Self

Source

pub const WMI_INVALID_REGINFO: Self

Source

pub const WMI_ALREADY_DISABLED: Self

Source

pub const WMI_READ_ONLY: Self

Source

pub const WMI_SET_FAILURE: Self

Source

pub const NOT_APPCONTAINER: Self

Source

pub const APPCONTAINER_REQUIRED: Self

Source

pub const NOT_SUPPORTED_IN_APPCONTAINER: Self

Source

pub const INVALID_PACKAGE_SID_LENGTH: Self

Source

pub const INVALID_MEDIA: Self

Source

pub const INVALID_LIBRARY: Self

Source

pub const INVALID_MEDIA_POOL: Self

Source

pub const DRIVE_MEDIA_MISMATCH: Self

Source

pub const MEDIA_OFFLINE: Self

Source

pub const LIBRARY_OFFLINE: Self

Source

pub const EMPTY: Self

Source

pub const NOT_EMPTY: Self

Source

pub const MEDIA_UNAVAILABLE: Self

Source

pub const RESOURCE_DISABLED: Self

Source

pub const INVALID_CLEANER: Self

Source

pub const UNABLE_TO_CLEAN: Self

Source

pub const OBJECT_NOT_FOUND: Self

Source

pub const DATABASE_FAILURE: Self

Source

pub const DATABASE_FULL: Self

Source

pub const MEDIA_INCOMPATIBLE: Self

Source

pub const RESOURCE_NOT_PRESENT: Self

Source

pub const INVALID_OPERATION: Self

Source

pub const MEDIA_NOT_AVAILABLE: Self

Source

pub const DEVICE_NOT_AVAILABLE: Self

Source

pub const REQUEST_REFUSED: Self

Source

pub const INVALID_DRIVE_OBJECT: Self

Source

pub const LIBRARY_FULL: Self

Source

pub const MEDIUM_NOT_ACCESSIBLE: Self

Source

pub const UNABLE_TO_LOAD_MEDIUM: Self

Source

pub const UNABLE_TO_INVENTORY_DRIVE: Self

Source

pub const UNABLE_TO_INVENTORY_SLOT: Self

Source

pub const UNABLE_TO_INVENTORY_TRANSPORT: Self

Source

pub const TRANSPORT_FULL: Self

Source

pub const CONTROLLING_IEPORT: Self

Source

pub const UNABLE_TO_EJECT_MOUNTED_MEDIA: Self

Source

pub const CLEANER_SLOT_SET: Self

Source

pub const CLEANER_SLOT_NOT_SET: Self

Source

pub const CLEANER_CARTRIDGE_SPENT: Self

Source

pub const UNEXPECTED_OMID: Self

Source

pub const CANT_DELETE_LAST_ITEM: Self

Source

pub const MESSAGE_EXCEEDS_MAX_SIZE: Self

Source

pub const VOLUME_CONTAINS_SYS_FILES: Self

Source

pub const INDIGENOUS_TYPE: Self

Source

pub const NO_SUPPORTING_DRIVES: Self

Source

pub const CLEANER_CARTRIDGE_INSTALLED: Self

Source

pub const IEPORT_FULL: Self

Source

pub const FILE_OFFLINE: Self

Source

pub const REMOTE_STORAGE_NOT_ACTIVE: Self

Source

pub const REMOTE_STORAGE_MEDIA_ERROR: Self

Source

pub const NOT_A_REPARSE_POINT: Self

Source

pub const REPARSE_ATTRIBUTE_CONFLICT: Self

Source

pub const INVALID_REPARSE_DATA: Self

Source

pub const REPARSE_TAG_INVALID: Self

Source

pub const REPARSE_TAG_MISMATCH: Self

Source

pub const REPARSE_POINT_ENCOUNTERED: Self

Source

pub const APP_DATA_NOT_FOUND: Self

Source

pub const APP_DATA_EXPIRED: Self

Source

pub const APP_DATA_CORRUPT: Self

Source

pub const APP_DATA_LIMIT_EXCEEDED: Self

Source

pub const APP_DATA_REBOOT_REQUIRED: Self

Source

pub const SECUREBOOT_ROLLBACK_DETECTED: Self

Source

pub const SECUREBOOT_POLICY_VIOLATION: Self

Source

pub const SECUREBOOT_INVALID_POLICY: Self

Source

pub const SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND: Self

Source

pub const SECUREBOOT_POLICY_NOT_SIGNED: Self

Source

pub const SECUREBOOT_NOT_ENABLED: Self

Source

pub const SECUREBOOT_FILE_REPLACED: Self

Source

pub const SECUREBOOT_POLICY_NOT_AUTHORIZED: Self

Source

pub const SECUREBOOT_POLICY_UNKNOWN: Self

Source

pub const SECUREBOOT_POLICY_MISSING_ANTIROLLBACKVERSION: Self

Source

pub const SECUREBOOT_PLATFORM_ID_MISMATCH: Self

Source

pub const SECUREBOOT_POLICY_ROLLBACK_DETECTED: Self

Source

pub const SECUREBOOT_POLICY_UPGRADE_MISMATCH: Self

Source

pub const SECUREBOOT_REQUIRED_POLICY_FILE_MISSING: Self

Source

pub const SECUREBOOT_NOT_BASE_POLICY: Self

Source

pub const SECUREBOOT_NOT_SUPPLEMENTAL_POLICY: Self

Source

pub const OFFLOAD_READ_FLT_NOT_SUPPORTED: Self

Source

pub const OFFLOAD_WRITE_FLT_NOT_SUPPORTED: Self

Source

pub const OFFLOAD_READ_FILE_NOT_SUPPORTED: Self

Source

pub const OFFLOAD_WRITE_FILE_NOT_SUPPORTED: Self

Source

pub const ALREADY_HAS_STREAM_ID: Self

Source

pub const SMR_GARBAGE_COLLECTION_REQUIRED: Self

Source

pub const WOF_WIM_HEADER_CORRUPT: Self

Source

pub const WOF_WIM_RESOURCE_TABLE_CORRUPT: Self

Source

pub const WOF_FILE_RESOURCE_TABLE_CORRUPT: Self

Source

pub const VOLUME_NOT_SIS_ENABLED: Self

Source

pub const SYSTEM_INTEGRITY_ROLLBACK_DETECTED: Self

Source

pub const SYSTEM_INTEGRITY_POLICY_VIOLATION: Self

Source

pub const SYSTEM_INTEGRITY_INVALID_POLICY: Self

Source

pub const SYSTEM_INTEGRITY_POLICY_NOT_SIGNED: Self

Source

pub const SYSTEM_INTEGRITY_TOO_MANY_POLICIES: Self

Source

pub const SYSTEM_INTEGRITY_SUPPLEMENTAL_POLICY_NOT_AUTHORIZED: Self

Source

pub const VSM_NOT_INITIALIZED: Self

Source

pub const VSM_DMA_PROTECTION_NOT_IN_USE: Self

Source

pub const PLATFORM_MANIFEST_NOT_AUTHORIZED: Self

Source

pub const PLATFORM_MANIFEST_INVALID: Self

Source

pub const PLATFORM_MANIFEST_FILE_NOT_AUTHORIZED: Self

Source

pub const PLATFORM_MANIFEST_CATALOG_NOT_AUTHORIZED: Self

Source

pub const PLATFORM_MANIFEST_BINARY_ID_NOT_FOUND: Self

Source

pub const PLATFORM_MANIFEST_NOT_ACTIVE: Self

Source

pub const PLATFORM_MANIFEST_NOT_SIGNED: Self

Source

pub const DEPENDENT_RESOURCE_EXISTS: Self

Source

pub const DEPENDENCY_NOT_FOUND: Self

Source

pub const DEPENDENCY_ALREADY_EXISTS: Self

Source

pub const RESOURCE_NOT_ONLINE: Self

Source

pub const HOST_NODE_NOT_AVAILABLE: Self

Source

pub const RESOURCE_NOT_AVAILABLE: Self

Source

pub const RESOURCE_NOT_FOUND: Self

Source

pub const SHUTDOWN_CLUSTER: Self

Source

pub const CANT_EVICT_ACTIVE_NODE: Self

Source

pub const OBJECT_ALREADY_EXISTS: Self

Source

pub const OBJECT_IN_LIST: Self

Source

pub const GROUP_NOT_AVAILABLE: Self

Source

pub const GROUP_NOT_FOUND: Self

Source

pub const GROUP_NOT_ONLINE: Self

Source

pub const HOST_NODE_NOT_RESOURCE_OWNER: Self

Source

pub const HOST_NODE_NOT_GROUP_OWNER: Self

Source

pub const RESMON_CREATE_FAILED: Self

Source

pub const RESMON_ONLINE_FAILED: Self

Source

pub const RESOURCE_ONLINE: Self

Source

pub const QUORUM_RESOURCE: Self

Source

pub const NOT_QUORUM_CAPABLE: Self

Source

pub const CLUSTER_SHUTTING_DOWN: Self

Source

pub const INVALID_STATE: Self

Source

pub const RESOURCE_PROPERTIES_STORED: Self

Source

pub const NOT_QUORUM_CLASS: Self

Source

pub const CORE_RESOURCE: Self

Source

pub const QUORUM_RESOURCE_ONLINE_FAILED: Self

Source

pub const QUORUMLOG_OPEN_FAILED: Self

Source

pub const CLUSTERLOG_CORRUPT: Self

Source

pub const CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE: Self

Source

pub const CLUSTERLOG_EXCEEDS_MAXSIZE: Self

Source

pub const CLUSTERLOG_CHKPOINT_NOT_FOUND: Self

Source

pub const CLUSTERLOG_NOT_ENOUGH_SPACE: Self

Source

pub const QUORUM_OWNER_ALIVE: Self

Source

pub const NETWORK_NOT_AVAILABLE: Self

Source

pub const NODE_NOT_AVAILABLE: Self

Source

pub const ALL_NODES_NOT_AVAILABLE: Self

Source

pub const RESOURCE_FAILED: Self

Source

pub const CLUSTER_INVALID_NODE: Self

Source

pub const CLUSTER_NODE_EXISTS: Self

Source

pub const CLUSTER_JOIN_IN_PROGRESS: Self

Source

pub const CLUSTER_NODE_NOT_FOUND: Self

Source

pub const CLUSTER_LOCAL_NODE_NOT_FOUND: Self

Source

pub const CLUSTER_NETWORK_EXISTS: Self

Source

pub const CLUSTER_NETWORK_NOT_FOUND: Self

Source

pub const CLUSTER_NETINTERFACE_EXISTS: Self

Source

pub const CLUSTER_NETINTERFACE_NOT_FOUND: Self

Source

pub const CLUSTER_INVALID_REQUEST: Self

Source

pub const CLUSTER_INVALID_NETWORK_PROVIDER: Self

Source

pub const CLUSTER_NODE_DOWN: Self

Source

pub const CLUSTER_NODE_UNREACHABLE: Self

Source

pub const CLUSTER_NODE_NOT_MEMBER: Self

Source

pub const CLUSTER_JOIN_NOT_IN_PROGRESS: Self

Source

pub const CLUSTER_INVALID_NETWORK: Self

Source

pub const CLUSTER_NODE_UP: Self

Source

pub const CLUSTER_IPADDR_IN_USE: Self

Source

pub const CLUSTER_NODE_NOT_PAUSED: Self

Source

pub const CLUSTER_NO_SECURITY_CONTEXT: Self

Source

pub const CLUSTER_NETWORK_NOT_INTERNAL: Self

Source

pub const CLUSTER_NODE_ALREADY_UP: Self

Source

pub const CLUSTER_NODE_ALREADY_DOWN: Self

Source

pub const CLUSTER_NETWORK_ALREADY_ONLINE: Self

Source

pub const CLUSTER_NETWORK_ALREADY_OFFLINE: Self

Source

pub const CLUSTER_NODE_ALREADY_MEMBER: Self

Source

pub const CLUSTER_LAST_INTERNAL_NETWORK: Self

Source

pub const CLUSTER_NETWORK_HAS_DEPENDENTS: Self

Source

pub const INVALID_OPERATION_ON_QUORUM: Self

Source

pub const DEPENDENCY_NOT_ALLOWED: Self

Source

pub const CLUSTER_NODE_PAUSED: Self

Source

pub const NODE_CANT_HOST_RESOURCE: Self

Source

pub const CLUSTER_NODE_NOT_READY: Self

Source

pub const CLUSTER_NODE_SHUTTING_DOWN: Self

Source

pub const CLUSTER_JOIN_ABORTED: Self

Source

pub const CLUSTER_INCOMPATIBLE_VERSIONS: Self

Source

pub const CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED: Self

Source

pub const CLUSTER_SYSTEM_CONFIG_CHANGED: Self

Source

pub const CLUSTER_RESOURCE_TYPE_NOT_FOUND: Self

Source

pub const CLUSTER_RESTYPE_NOT_SUPPORTED: Self

Source

pub const CLUSTER_RESNAME_NOT_FOUND: Self

Source

pub const CLUSTER_NO_RPC_PACKAGES_REGISTERED: Self

Source

pub const CLUSTER_OWNER_NOT_IN_PREFLIST: Self

Source

pub const CLUSTER_DATABASE_SEQMISMATCH: Self

Source

pub const RESMON_INVALID_STATE: Self

Source

pub const CLUSTER_GUM_NOT_LOCKER: Self

Source

pub const QUORUM_DISK_NOT_FOUND: Self

Source

pub const DATABASE_BACKUP_CORRUPT: Self

Source

pub const CLUSTER_NODE_ALREADY_HAS_DFS_ROOT: Self

Source

pub const RESOURCE_PROPERTY_UNCHANGEABLE: Self

Source

pub const NO_ADMIN_ACCESS_POINT: Self

Source

pub const CLUSTER_MEMBERSHIP_INVALID_STATE: Self

Source

pub const CLUSTER_QUORUMLOG_NOT_FOUND: Self

Source

pub const CLUSTER_MEMBERSHIP_HALT: Self

Source

pub const CLUSTER_INSTANCE_ID_MISMATCH: Self

Source

pub const CLUSTER_NETWORK_NOT_FOUND_FOR_IP: Self

Source

pub const CLUSTER_PROPERTY_DATA_TYPE_MISMATCH: Self

Source

pub const CLUSTER_EVICT_WITHOUT_CLEANUP: Self

Source

pub const CLUSTER_PARAMETER_MISMATCH: Self

Source

pub const NODE_CANNOT_BE_CLUSTERED: Self

Source

pub const CLUSTER_WRONG_OS_VERSION: Self

Source

pub const CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME: Self

Source

pub const CLUSCFG_ALREADY_COMMITTED: Self

Source

pub const CLUSCFG_ROLLBACK_FAILED: Self

Source

pub const CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT: Self

Source

pub const CLUSTER_OLD_VERSION: Self

Source

pub const CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME: Self

Source

pub const CLUSTER_NO_NET_ADAPTERS: Self

Source

pub const CLUSTER_POISONED: Self

Source

pub const CLUSTER_GROUP_MOVING: Self

Source

pub const CLUSTER_RESOURCE_TYPE_BUSY: Self

Source

pub const RESOURCE_CALL_TIMED_OUT: Self

Source

pub const INVALID_CLUSTER_IPV6_ADDRESS: Self

Source

pub const CLUSTER_INTERNAL_INVALID_FUNCTION: Self

Source

pub const CLUSTER_PARAMETER_OUT_OF_BOUNDS: Self

Source

pub const CLUSTER_PARTIAL_SEND: Self

Source

pub const CLUSTER_REGISTRY_INVALID_FUNCTION: Self

Source

pub const CLUSTER_INVALID_STRING_TERMINATION: Self

Source

pub const CLUSTER_INVALID_STRING_FORMAT: Self

Source

pub const CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS: Self

Source

pub const CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS: Self

Source

pub const CLUSTER_NULL_DATA: Self

Source

pub const CLUSTER_PARTIAL_READ: Self

Source

pub const CLUSTER_PARTIAL_WRITE: Self

Source

pub const CLUSTER_CANT_DESERIALIZE_DATA: Self

Source

pub const DEPENDENT_RESOURCE_PROPERTY_CONFLICT: Self

Source

pub const CLUSTER_NO_QUORUM: Self

Source

pub const CLUSTER_INVALID_IPV6_NETWORK: Self

Source

pub const CLUSTER_INVALID_IPV6_TUNNEL_NETWORK: Self

Source

pub const QUORUM_NOT_ALLOWED_IN_THIS_GROUP: Self

Source

pub const DEPENDENCY_TREE_TOO_COMPLEX: Self

Source

pub const EXCEPTION_IN_RESOURCE_CALL: Self

Source

pub const CLUSTER_RHS_FAILED_INITIALIZATION: Self

Source

pub const CLUSTER_NOT_INSTALLED: Self

Source

pub const CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE: Self

Source

pub const CLUSTER_MAX_NODES_IN_CLUSTER: Self

Source

pub const CLUSTER_TOO_MANY_NODES: Self

Source

pub const CLUSTER_OBJECT_ALREADY_USED: Self

Source

pub const NONCORE_GROUPS_FOUND: Self

Source

pub const FILE_SHARE_RESOURCE_CONFLICT: Self

Source

pub const CLUSTER_EVICT_INVALID_REQUEST: Self

Source

pub const CLUSTER_SINGLETON_RESOURCE: Self

Source

pub const CLUSTER_GROUP_SINGLETON_RESOURCE: Self

Source

pub const CLUSTER_RESOURCE_PROVIDER_FAILED: Self

Source

pub const CLUSTER_RESOURCE_CONFIGURATION_ERROR: Self

Source

pub const CLUSTER_GROUP_BUSY: Self

Source

pub const CLUSTER_NOT_SHARED_VOLUME: Self

Source

pub const CLUSTER_INVALID_SECURITY_DESCRIPTOR: Self

Source

pub const CLUSTER_SHARED_VOLUMES_IN_USE: Self

Source

pub const CLUSTER_USE_SHARED_VOLUMES_API: Self

Source

pub const CLUSTER_BACKUP_IN_PROGRESS: Self

Source

pub const NON_CSV_PATH: Self

Source

pub const CSV_VOLUME_NOT_LOCAL: Self

Source

pub const CLUSTER_WATCHDOG_TERMINATING: Self

Source

pub const CLUSTER_RESOURCE_VETOED_MOVE_INCOMPATIBLE_NODES: Self

Source

pub const CLUSTER_INVALID_NODE_WEIGHT: Self

Source

pub const CLUSTER_RESOURCE_VETOED_CALL: Self

Source

pub const RESMON_SYSTEM_RESOURCES_LACKING: Self

Source

pub const CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_DESTINATION: Self

Source

pub const CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_SOURCE: Self

Source

pub const CLUSTER_GROUP_QUEUED: Self

Source

pub const CLUSTER_RESOURCE_LOCKED_STATUS: Self

Source

pub const CLUSTER_SHARED_VOLUME_FAILOVER_NOT_ALLOWED: Self

Source

pub const CLUSTER_NODE_DRAIN_IN_PROGRESS: Self

Source

pub const CLUSTER_DISK_NOT_CONNECTED: Self

Source

pub const DISK_NOT_CSV_CAPABLE: Self

Source

pub const RESOURCE_NOT_IN_AVAILABLE_STORAGE: Self

Source

pub const CLUSTER_SHARED_VOLUME_REDIRECTED: Self

Source

pub const CLUSTER_SHARED_VOLUME_NOT_REDIRECTED: Self

Source

pub const CLUSTER_CANNOT_RETURN_PROPERTIES: Self

Source

pub const CLUSTER_RESOURCE_CONTAINS_UNSUPPORTED_DIFF_AREA_FOR_SHARED_VOLUMES: Self

Source

pub const CLUSTER_RESOURCE_IS_IN_MAINTENANCE_MODE: Self

Source

pub const CLUSTER_AFFINITY_CONFLICT: Self

Source

pub const CLUSTER_RESOURCE_IS_REPLICA_VIRTUAL_MACHINE: Self

Source

pub const CLUSTER_UPGRADE_INCOMPATIBLE_VERSIONS: Self

Source

pub const CLUSTER_UPGRADE_FIX_QUORUM_NOT_SUPPORTED: Self

Source

pub const CLUSTER_UPGRADE_RESTART_REQUIRED: Self

Source

pub const CLUSTER_UPGRADE_IN_PROGRESS: Self

Source

pub const CLUSTER_UPGRADE_INCOMPLETE: Self

Source

pub const CLUSTER_NODE_IN_GRACE_PERIOD: Self

Source

pub const CLUSTER_CSV_IO_PAUSE_TIMEOUT: Self

Source

pub const NODE_NOT_ACTIVE_CLUSTER_MEMBER: Self

Source

pub const CLUSTER_RESOURCE_NOT_MONITORED: Self

Source

pub const CLUSTER_RESOURCE_DOES_NOT_SUPPORT_UNMONITORED: Self

Source

pub const CLUSTER_RESOURCE_IS_REPLICATED: Self

Source

pub const CLUSTER_NODE_ISOLATED: Self

Source

pub const CLUSTER_NODE_QUARANTINED: Self

Source

pub const CLUSTER_DATABASE_UPDATE_CONDITION_FAILED: Self

Source

pub const CLUSTER_SPACE_DEGRADED: Self

Source

pub const CLUSTER_TOKEN_DELEGATION_NOT_SUPPORTED: Self

Source

pub const CLUSTER_CSV_INVALID_HANDLE: Self

Source

pub const CLUSTER_CSV_SUPPORTED_ONLY_ON_COORDINATOR: Self

Source

pub const GROUPSET_NOT_AVAILABLE: Self

Source

pub const GROUPSET_NOT_FOUND: Self

Source

pub const GROUPSET_CANT_PROVIDE: Self

Source

pub const CLUSTER_FAULT_DOMAIN_PARENT_NOT_FOUND: Self

Source

pub const CLUSTER_FAULT_DOMAIN_INVALID_HIERARCHY: Self

Source

pub const CLUSTER_FAULT_DOMAIN_FAILED_S2D_VALIDATION: Self

Source

pub const CLUSTER_FAULT_DOMAIN_S2D_CONNECTIVITY_LOSS: Self

Source

pub const CLUSTER_INVALID_INFRASTRUCTURE_FILESERVER_NAME: Self

Source

pub const CLUSTERSET_MANAGEMENT_CLUSTER_UNREACHABLE: Self

Source

pub const ENCRYPTION_FAILED: Self

Source

pub const DECRYPTION_FAILED: Self

Source

pub const FILE_ENCRYPTED: Self

Source

pub const NO_RECOVERY_POLICY: Self

Source

pub const NO_EFS: Self

Source

pub const WRONG_EFS: Self

Source

pub const NO_USER_KEYS: Self

Source

pub const FILE_NOT_ENCRYPTED: Self

Source

pub const NOT_EXPORT_FORMAT: Self

Source

pub const FILE_READ_ONLY: Self

Source

pub const DIR_EFS_DISALLOWED: Self

Source

pub const EFS_SERVER_NOT_TRUSTED: Self

Source

pub const BAD_RECOVERY_POLICY: Self

Source

pub const EFS_ALG_BLOB_TOO_BIG: Self

Source

pub const VOLUME_NOT_SUPPORT_EFS: Self

Source

pub const EFS_DISABLED: Self

Source

pub const EFS_VERSION_NOT_SUPPORT: Self

Source

pub const CS_ENCRYPTION_INVALID_SERVER_RESPONSE: Self

Source

pub const CS_ENCRYPTION_UNSUPPORTED_SERVER: Self

Source

pub const CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE: Self

Source

pub const CS_ENCRYPTION_NEW_ENCRYPTED_FILE: Self

Source

pub const CS_ENCRYPTION_FILE_NOT_CSE: Self

Source

pub const ENCRYPTION_POLICY_DENIES_OPERATION: Self

Source

pub const WIP_ENCRYPTION_FAILED: Self

Source

pub const NO_BROWSER_SERVERS_FOUND: Self

Source

pub const LOG_SECTOR_INVALID: Self

Source

pub const LOG_SECTOR_PARITY_INVALID: Self

Source

pub const LOG_SECTOR_REMAPPED: Self

Source

pub const LOG_BLOCK_INCOMPLETE: Self

Source

pub const LOG_INVALID_RANGE: Self

Source

pub const LOG_BLOCKS_EXHAUSTED: Self

Source

pub const LOG_READ_CONTEXT_INVALID: Self

Source

pub const LOG_RESTART_INVALID: Self

Source

pub const LOG_BLOCK_VERSION: Self

Source

pub const LOG_BLOCK_INVALID: Self

Source

pub const LOG_READ_MODE_INVALID: Self

Source

pub const LOG_NO_RESTART: Self

Source

pub const LOG_METADATA_CORRUPT: Self

Source

pub const LOG_METADATA_INVALID: Self

Source

pub const LOG_METADATA_INCONSISTENT: Self

Source

pub const LOG_RESERVATION_INVALID: Self

Source

pub const LOG_CANT_DELETE: Self

Source

pub const LOG_CONTAINER_LIMIT_EXCEEDED: Self

Source

pub const LOG_START_OF_LOG: Self

Source

pub const LOG_POLICY_ALREADY_INSTALLED: Self

Source

pub const LOG_POLICY_NOT_INSTALLED: Self

Source

pub const LOG_POLICY_INVALID: Self

Source

pub const LOG_POLICY_CONFLICT: Self

Source

pub const LOG_PINNED_ARCHIVE_TAIL: Self

Source

pub const LOG_RECORD_NONEXISTENT: Self

Source

pub const LOG_RECORDS_RESERVED_INVALID: Self

Source

pub const LOG_SPACE_RESERVED_INVALID: Self

Source

pub const LOG_TAIL_INVALID: Self

Source

pub const LOG_FULL: Self

Source

pub const COULD_NOT_RESIZE_LOG: Self

Source

pub const LOG_MULTIPLEXED: Self

Source

pub const LOG_DEDICATED: Self

Source

pub const LOG_ARCHIVE_NOT_IN_PROGRESS: Self

Source

pub const LOG_ARCHIVE_IN_PROGRESS: Self

Source

pub const LOG_EPHEMERAL: Self

Source

pub const LOG_NOT_ENOUGH_CONTAINERS: Self

Source

pub const LOG_CLIENT_ALREADY_REGISTERED: Self

Source

pub const LOG_CLIENT_NOT_REGISTERED: Self

Source

pub const LOG_FULL_HANDLER_IN_PROGRESS: Self

Source

pub const LOG_CONTAINER_READ_FAILED: Self

Source

pub const LOG_CONTAINER_WRITE_FAILED: Self

Source

pub const LOG_CONTAINER_OPEN_FAILED: Self

Source

pub const LOG_CONTAINER_STATE_INVALID: Self

Source

pub const LOG_STATE_INVALID: Self

Source

pub const LOG_PINNED: Self

Source

pub const LOG_METADATA_FLUSH_FAILED: Self

Source

pub const LOG_INCONSISTENT_SECURITY: Self

Source

pub const LOG_APPENDED_FLUSH_FAILED: Self

Source

pub const LOG_PINNED_RESERVATION: Self

Source

pub const INVALID_TRANSACTION: Self

Source

pub const TRANSACTION_NOT_ACTIVE: Self

Source

pub const TRANSACTION_REQUEST_NOT_VALID: Self

Source

pub const TRANSACTION_NOT_REQUESTED: Self

Source

pub const TRANSACTION_ALREADY_ABORTED: Self

Source

pub const TRANSACTION_ALREADY_COMMITTED: Self

Source

pub const TM_INITIALIZATION_FAILED: Self

Source

pub const RESOURCEMANAGER_READ_ONLY: Self

Source

pub const TRANSACTION_NOT_JOINED: Self

Source

pub const TRANSACTION_SUPERIOR_EXISTS: Self

Source

pub const CRM_PROTOCOL_ALREADY_EXISTS: Self

Source

pub const TRANSACTION_PROPAGATION_FAILED: Self

Source

pub const CRM_PROTOCOL_NOT_FOUND: Self

Source

pub const TRANSACTION_INVALID_MARSHALL_BUFFER: Self

Source

pub const CURRENT_TRANSACTION_NOT_VALID: Self

Source

pub const TRANSACTION_NOT_FOUND: Self

Source

pub const RESOURCEMANAGER_NOT_FOUND: Self

Source

pub const ENLISTMENT_NOT_FOUND: Self

Source

pub const TRANSACTIONMANAGER_NOT_FOUND: Self

Source

pub const TRANSACTIONMANAGER_NOT_ONLINE: Self

Source

pub const TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION: Self

Source

pub const TRANSACTION_NOT_ROOT: Self

Source

pub const TRANSACTION_OBJECT_EXPIRED: Self

Source

pub const TRANSACTION_RESPONSE_NOT_ENLISTED: Self

Source

pub const TRANSACTION_RECORD_TOO_LONG: Self

Source

pub const IMPLICIT_TRANSACTION_NOT_SUPPORTED: Self

Source

pub const TRANSACTION_INTEGRITY_VIOLATED: Self

Source

pub const TRANSACTIONMANAGER_IDENTITY_MISMATCH: Self

Source

pub const RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT: Self

Source

pub const TRANSACTION_MUST_WRITETHROUGH: Self

Source

pub const TRANSACTION_NO_SUPERIOR: Self

Source

pub const HEURISTIC_DAMAGE_POSSIBLE: Self

Source

pub const TRANSACTIONAL_CONFLICT: Self

Source

pub const RM_NOT_ACTIVE: Self

Source

pub const RM_METADATA_CORRUPT: Self

Source

pub const DIRECTORY_NOT_RM: Self

Source

pub const TRANSACTIONS_UNSUPPORTED_REMOTE: Self

Source

pub const LOG_RESIZE_INVALID_SIZE: Self

Source

pub const OBJECT_NO_LONGER_EXISTS: Self

Source

pub const STREAM_MINIVERSION_NOT_FOUND: Self

Source

pub const STREAM_MINIVERSION_NOT_VALID: Self

Source

pub const MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION: Self

Source

pub const CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT: Self

Source

pub const CANT_CREATE_MORE_STREAM_MINIVERSIONS: Self

Source

pub const REMOTE_FILE_VERSION_MISMATCH: Self

Source

pub const HANDLE_NO_LONGER_VALID: Self

Source

pub const NO_TXF_METADATA: Self

Source

pub const LOG_CORRUPTION_DETECTED: Self

Source

pub const CANT_RECOVER_WITH_HANDLE_OPEN: Self

Source

pub const RM_DISCONNECTED: Self

Source

pub const ENLISTMENT_NOT_SUPERIOR: Self

Source

pub const RECOVERY_NOT_NEEDED: Self

Source

pub const RM_ALREADY_STARTED: Self

Source

pub const FILE_IDENTITY_NOT_PERSISTENT: Self

Source

pub const CANT_BREAK_TRANSACTIONAL_DEPENDENCY: Self

Source

pub const CANT_CROSS_RM_BOUNDARY: Self

Source

pub const TXF_DIR_NOT_EMPTY: Self

Source

pub const INDOUBT_TRANSACTIONS_EXIST: Self

Source

pub const TM_VOLATILE: Self

Source

pub const ROLLBACK_TIMER_EXPIRED: Self

Source

pub const TXF_ATTRIBUTE_CORRUPT: Self

Source

pub const EFS_NOT_ALLOWED_IN_TRANSACTION: Self

Source

pub const TRANSACTIONAL_OPEN_NOT_ALLOWED: Self

Source

pub const LOG_GROWTH_FAILED: Self

Source

pub const TRANSACTED_MAPPING_UNSUPPORTED_REMOTE: Self

Source

pub const TXF_METADATA_ALREADY_PRESENT: Self

Source

pub const TRANSACTION_SCOPE_CALLBACKS_NOT_SET: Self

Source

pub const TRANSACTION_REQUIRED_PROMOTION: Self

Source

pub const CANNOT_EXECUTE_FILE_IN_TRANSACTION: Self

Source

pub const TRANSACTIONS_NOT_FROZEN: Self

Source

pub const TRANSACTION_FREEZE_IN_PROGRESS: Self

Source

pub const NOT_SNAPSHOT_VOLUME: Self

Source

pub const NO_SAVEPOINT_WITH_OPEN_FILES: Self

Source

pub const DATA_LOST_REPAIR: Self

Source

pub const SPARSE_NOT_ALLOWED_IN_TRANSACTION: Self

Source

pub const TM_IDENTITY_MISMATCH: Self

Source

pub const FLOATED_SECTION: Self

Source

pub const CANNOT_ACCEPT_TRANSACTED_WORK: Self

Source

pub const CANNOT_ABORT_TRANSACTIONS: Self

Source

pub const BAD_CLUSTERS: Self

Source

pub const COMPRESSION_NOT_ALLOWED_IN_TRANSACTION: Self

Source

pub const VOLUME_DIRTY: Self

Source

pub const OPERATION_NOT_SUPPORTED_IN_TRANSACTION: Self

Source

pub const EXPIRED_HANDLE: Self

Source

pub const TRANSACTION_NOT_ENLISTED: Self

Source

pub const CTX_WINSTATION_NAME_INVALID: Self

Source

pub const CTX_INVALID_PD: Self

Source

pub const CTX_PD_NOT_FOUND: Self

Source

pub const CTX_WD_NOT_FOUND: Self

Source

pub const CTX_CANNOT_MAKE_EVENTLOG_ENTRY: Self

Source

pub const CTX_SERVICE_NAME_COLLISION: Self

Source

pub const CTX_CLOSE_PENDING: Self

Source

pub const CTX_NO_OUTBUF: Self

Source

pub const CTX_MODEM_INF_NOT_FOUND: Self

Source

pub const CTX_INVALID_MODEMNAME: Self

Source

pub const CTX_MODEM_RESPONSE_ERROR: Self

Source

pub const CTX_MODEM_RESPONSE_TIMEOUT: Self

Source

pub const CTX_MODEM_RESPONSE_NO_CARRIER: Self

Source

pub const CTX_MODEM_RESPONSE_NO_DIALTONE: Self

Source

pub const CTX_MODEM_RESPONSE_BUSY: Self

Source

pub const CTX_MODEM_RESPONSE_VOICE: Self

Source

pub const CTX_TD_ERROR: Self

Source

pub const CTX_WINSTATION_NOT_FOUND: Self

Source

pub const CTX_WINSTATION_ALREADY_EXISTS: Self

Source

pub const CTX_WINSTATION_BUSY: Self

Source

pub const CTX_BAD_VIDEO_MODE: Self

Source

pub const CTX_GRAPHICS_INVALID: Self

Source

pub const CTX_LOGON_DISABLED: Self

Source

pub const CTX_NOT_CONSOLE: Self

Source

pub const CTX_CLIENT_QUERY_TIMEOUT: Self

Source

pub const CTX_CONSOLE_DISCONNECT: Self

Source

pub const CTX_CONSOLE_CONNECT: Self

Source

pub const CTX_SHADOW_DENIED: Self

Source

pub const CTX_WINSTATION_ACCESS_DENIED: Self

Source

pub const CTX_INVALID_WD: Self

Source

pub const CTX_SHADOW_INVALID: Self

Source

pub const CTX_SHADOW_DISABLED: Self

Source

pub const CTX_CLIENT_LICENSE_IN_USE: Self

Source

pub const CTX_CLIENT_LICENSE_NOT_SET: Self

Source

pub const CTX_LICENSE_NOT_AVAILABLE: Self

Source

pub const CTX_LICENSE_CLIENT_INVALID: Self

Source

pub const CTX_LICENSE_EXPIRED: Self

Source

pub const CTX_SHADOW_NOT_RUNNING: Self

Source

pub const CTX_SHADOW_ENDED_BY_MODE_CHANGE: Self

Source

pub const ACTIVATION_COUNT_EXCEEDED: Self

Source

pub const CTX_WINSTATIONS_DISABLED: Self

Source

pub const CTX_ENCRYPTION_LEVEL_REQUIRED: Self

Source

pub const CTX_SESSION_IN_USE: Self

Source

pub const CTX_NO_FORCE_LOGOFF: Self

Source

pub const CTX_ACCOUNT_RESTRICTION: Self

Source

pub const RDP_PROTOCOL_ERROR: Self

Source

pub const CTX_CDM_CONNECT: Self

Source

pub const CTX_CDM_DISCONNECT: Self

Source

pub const CTX_SECURITY_LAYER_ERROR: Self

Source

pub const TS_INCOMPATIBLE_SESSIONS: Self

Source

pub const TS_VIDEO_SUBSYSTEM_ERROR: Self

Source

pub const DS_NOT_INSTALLED: Self

Source

pub const DS_MEMBERSHIP_EVALUATED_LOCALLY: Self

Source

pub const DS_NO_ATTRIBUTE_OR_VALUE: Self

Source

pub const DS_INVALID_ATTRIBUTE_SYNTAX: Self

Source

pub const DS_ATTRIBUTE_TYPE_UNDEFINED: Self

Source

pub const DS_ATTRIBUTE_OR_VALUE_EXISTS: Self

Source

pub const DS_BUSY: Self

Source

pub const DS_UNAVAILABLE: Self

Source

pub const DS_NO_RIDS_ALLOCATED: Self

Source

pub const DS_NO_MORE_RIDS: Self

Source

pub const DS_INCORRECT_ROLE_OWNER: Self

Source

pub const DS_RIDMGR_INIT_ERROR: Self

Source

pub const DS_OBJ_CLASS_VIOLATION: Self

Source

pub const DS_CANT_ON_NON_LEAF: Self

Source

pub const DS_CANT_ON_RDN: Self

Source

pub const DS_CANT_MOD_OBJ_CLASS: Self

Source

pub const DS_CROSS_DOM_MOVE_ERROR: Self

Source

pub const DS_GC_NOT_AVAILABLE: Self

Source

pub const SHARED_POLICY: Self

Source

pub const POLICY_OBJECT_NOT_FOUND: Self

Source

pub const POLICY_ONLY_IN_DS: Self

Source

pub const PROMOTION_ACTIVE: Self

Source

pub const NO_PROMOTION_ACTIVE: Self

Source

pub const DS_OPERATIONS_ERROR: Self

Source

pub const DS_PROTOCOL_ERROR: Self

Source

pub const DS_TIMELIMIT_EXCEEDED: Self

Source

pub const DS_SIZELIMIT_EXCEEDED: Self

Source

pub const DS_ADMIN_LIMIT_EXCEEDED: Self

Source

pub const DS_COMPARE_FALSE: Self

Source

pub const DS_COMPARE_TRUE: Self

Source

pub const DS_AUTH_METHOD_NOT_SUPPORTED: Self

Source

pub const DS_STRONG_AUTH_REQUIRED: Self

Source

pub const DS_INAPPROPRIATE_AUTH: Self

Source

pub const DS_AUTH_UNKNOWN: Self

Source

pub const DS_REFERRAL: Self

Source

pub const DS_UNAVAILABLE_CRIT_EXTENSION: Self

Source

pub const DS_CONFIDENTIALITY_REQUIRED: Self

Source

pub const DS_INAPPROPRIATE_MATCHING: Self

Source

pub const DS_CONSTRAINT_VIOLATION: Self

Source

pub const DS_NO_SUCH_OBJECT: Self

Source

pub const DS_ALIAS_PROBLEM: Self

Source

pub const DS_INVALID_DN_SYNTAX: Self

Source

pub const DS_IS_LEAF: Self

Source

pub const DS_ALIAS_DEREF_PROBLEM: Self

Source

pub const DS_UNWILLING_TO_PERFORM: Self

Source

pub const DS_LOOP_DETECT: Self

Source

pub const DS_NAMING_VIOLATION: Self

Source

pub const DS_OBJECT_RESULTS_TOO_LARGE: Self

Source

pub const DS_AFFECTS_MULTIPLE_DSAS: Self

Source

pub const DS_SERVER_DOWN: Self

Source

pub const DS_LOCAL_ERROR: Self

Source

pub const DS_ENCODING_ERROR: Self

Source

pub const DS_DECODING_ERROR: Self

Source

pub const DS_FILTER_UNKNOWN: Self

Source

pub const DS_PARAM_ERROR: Self

Source

pub const DS_NOT_SUPPORTED: Self

Source

pub const DS_NO_RESULTS_RETURNED: Self

Source

pub const DS_CONTROL_NOT_FOUND: Self

Source

pub const DS_CLIENT_LOOP: Self

Source

pub const DS_REFERRAL_LIMIT_EXCEEDED: Self

Source

pub const DS_SORT_CONTROL_MISSING: Self

Source

pub const DS_OFFSET_RANGE_ERROR: Self

Source

pub const DS_RIDMGR_DISABLED: Self

Source

pub const DS_ROOT_MUST_BE_NC: Self

Source

pub const DS_ADD_REPLICA_INHIBITED: Self

Source

pub const DS_ATT_NOT_DEF_IN_SCHEMA: Self

Source

pub const DS_MAX_OBJ_SIZE_EXCEEDED: Self

Source

pub const DS_OBJ_STRING_NAME_EXISTS: Self

Source

pub const DS_NO_RDN_DEFINED_IN_SCHEMA: Self

Source

pub const DS_RDN_DOESNT_MATCH_SCHEMA: Self

Source

pub const DS_NO_REQUESTED_ATTS_FOUND: Self

Source

pub const DS_USER_BUFFER_TO_SMALL: Self

Source

pub const DS_ATT_IS_NOT_ON_OBJ: Self

Source

pub const DS_ILLEGAL_MOD_OPERATION: Self

Source

pub const DS_OBJ_TOO_LARGE: Self

Source

pub const DS_BAD_INSTANCE_TYPE: Self

Source

pub const DS_MASTERDSA_REQUIRED: Self

Source

pub const DS_OBJECT_CLASS_REQUIRED: Self

Source

pub const DS_MISSING_REQUIRED_ATT: Self

Source

pub const DS_ATT_NOT_DEF_FOR_CLASS: Self

Source

pub const DS_ATT_ALREADY_EXISTS: Self

Source

pub const DS_CANT_ADD_ATT_VALUES: Self

Source

pub const DS_SINGLE_VALUE_CONSTRAINT: Self

Source

pub const DS_RANGE_CONSTRAINT: Self

Source

pub const DS_ATT_VAL_ALREADY_EXISTS: Self

Source

pub const DS_CANT_REM_MISSING_ATT: Self

Source

pub const DS_CANT_REM_MISSING_ATT_VAL: Self

Source

pub const DS_ROOT_CANT_BE_SUBREF: Self

Source

pub const DS_NO_CHAINING: Self

Source

pub const DS_NO_CHAINED_EVAL: Self

Source

pub const DS_NO_PARENT_OBJECT: Self

Source

pub const DS_PARENT_IS_AN_ALIAS: Self

Source

pub const DS_CANT_MIX_MASTER_AND_REPS: Self

Source

pub const DS_CHILDREN_EXIST: Self

Source

pub const DS_OBJ_NOT_FOUND: Self

Source

pub const DS_ALIASED_OBJ_MISSING: Self

Source

pub const DS_BAD_NAME_SYNTAX: Self

Source

pub const DS_ALIAS_POINTS_TO_ALIAS: Self

Source

pub const DS_CANT_DEREF_ALIAS: Self

Source

pub const DS_OUT_OF_SCOPE: Self

Source

pub const DS_OBJECT_BEING_REMOVED: Self

Source

pub const DS_CANT_DELETE_DSA_OBJ: Self

Source

pub const DS_GENERIC_ERROR: Self

Source

pub const DS_DSA_MUST_BE_INT_MASTER: Self

Source

pub const DS_CLASS_NOT_DSA: Self

Source

pub const DS_INSUFF_ACCESS_RIGHTS: Self

Source

pub const DS_ILLEGAL_SUPERIOR: Self

Source

pub const DS_ATTRIBUTE_OWNED_BY_SAM: Self

Source

pub const DS_NAME_TOO_MANY_PARTS: Self

Source

pub const DS_NAME_TOO_LONG: Self

Source

pub const DS_NAME_VALUE_TOO_LONG: Self

Source

pub const DS_NAME_UNPARSEABLE: Self

Source

pub const DS_NAME_TYPE_UNKNOWN: Self

Source

pub const DS_NOT_AN_OBJECT: Self

Source

pub const DS_SEC_DESC_TOO_SHORT: Self

Source

pub const DS_SEC_DESC_INVALID: Self

Source

pub const DS_NO_DELETED_NAME: Self

Source

pub const DS_SUBREF_MUST_HAVE_PARENT: Self

Source

pub const DS_NCNAME_MUST_BE_NC: Self

Source

pub const DS_CANT_ADD_SYSTEM_ONLY: Self

Source

pub const DS_CLASS_MUST_BE_CONCRETE: Self

Source

pub const DS_INVALID_DMD: Self

Source

pub const DS_OBJ_GUID_EXISTS: Self

Source

pub const DS_NO_CROSSREF_FOR_NC: Self

Source

pub const DS_SHUTTING_DOWN: Self

Source

pub const DS_UNKNOWN_OPERATION: Self

Source

pub const DS_INVALID_ROLE_OWNER: Self

Source

pub const DS_COULDNT_CONTACT_FSMO: Self

Source

pub const DS_CROSS_NC_DN_RENAME: Self

Source

pub const DS_CANT_MOD_SYSTEM_ONLY: Self

Source

pub const DS_REPLICATOR_ONLY: Self

Source

pub const DS_OBJ_CLASS_NOT_DEFINED: Self

Source

pub const DS_OBJ_CLASS_NOT_SUBCLASS: Self

Source

pub const DS_NAME_REFERENCE_INVALID: Self

Source

pub const DS_CROSS_REF_EXISTS: Self

Source

pub const DS_CANT_DEL_MASTER_CROSSREF: Self

Source

pub const DS_SUBTREE_NOTIFY_NOT_NC_HEAD: Self

Source

pub const DS_NOTIFY_FILTER_TOO_COMPLEX: Self

Source

pub const DS_DUP_RDN: Self

Source

pub const DS_DUP_OID: Self

Source

pub const DS_DUP_MAPI_ID: Self

Source

pub const DS_DUP_SCHEMA_ID_GUID: Self

Source

pub const DS_DUP_LDAP_DISPLAY_NAME: Self

Source

pub const DS_SEMANTIC_ATT_TEST: Self

Source

pub const DS_SYNTAX_MISMATCH: Self

Source

pub const DS_EXISTS_IN_MUST_HAVE: Self

Source

pub const DS_EXISTS_IN_MAY_HAVE: Self

Source

pub const DS_NONEXISTENT_MAY_HAVE: Self

Source

pub const DS_NONEXISTENT_MUST_HAVE: Self

Source

pub const DS_AUX_CLS_TEST_FAIL: Self

Source

pub const DS_NONEXISTENT_POSS_SUP: Self

Source

pub const DS_SUB_CLS_TEST_FAIL: Self

Source

pub const DS_BAD_RDN_ATT_ID_SYNTAX: Self

Source

pub const DS_EXISTS_IN_AUX_CLS: Self

Source

pub const DS_EXISTS_IN_SUB_CLS: Self

Source

pub const DS_EXISTS_IN_POSS_SUP: Self

Source

pub const DS_RECALCSCHEMA_FAILED: Self

Source

pub const DS_TREE_DELETE_NOT_FINISHED: Self

Source

pub const DS_CANT_DELETE: Self

Source

pub const DS_ATT_SCHEMA_REQ_ID: Self

Source

pub const DS_BAD_ATT_SCHEMA_SYNTAX: Self

Source

pub const DS_CANT_CACHE_ATT: Self

Source

pub const DS_CANT_CACHE_CLASS: Self

Source

pub const DS_CANT_REMOVE_ATT_CACHE: Self

Source

pub const DS_CANT_REMOVE_CLASS_CACHE: Self

Source

pub const DS_CANT_RETRIEVE_DN: Self

Source

pub const DS_MISSING_SUPREF: Self

Source

pub const DS_CANT_RETRIEVE_INSTANCE: Self

Source

pub const DS_CODE_INCONSISTENCY: Self

Source

pub const DS_DATABASE_ERROR: Self

Source

pub const DS_GOVERNSID_MISSING: Self

Source

pub const DS_MISSING_EXPECTED_ATT: Self

Source

pub const DS_NCNAME_MISSING_CR_REF: Self

Source

pub const DS_SECURITY_CHECKING_ERROR: Self

Source

pub const DS_SCHEMA_NOT_LOADED: Self

Source

pub const DS_SCHEMA_ALLOC_FAILED: Self

Source

pub const DS_ATT_SCHEMA_REQ_SYNTAX: Self

Source

pub const DS_GCVERIFY_ERROR: Self

Source

pub const DS_DRA_SCHEMA_MISMATCH: Self

Source

pub const DS_CANT_FIND_DSA_OBJ: Self

Source

pub const DS_CANT_FIND_EXPECTED_NC: Self

Source

pub const DS_CANT_FIND_NC_IN_CACHE: Self

Source

pub const DS_CANT_RETRIEVE_CHILD: Self

Source

pub const DS_SECURITY_ILLEGAL_MODIFY: Self

Source

pub const DS_CANT_REPLACE_HIDDEN_REC: Self

Source

pub const DS_BAD_HIERARCHY_FILE: Self

Source

pub const DS_BUILD_HIERARCHY_TABLE_FAILED: Self

Source

pub const DS_CONFIG_PARAM_MISSING: Self

Source

pub const DS_COUNTING_AB_INDICES_FAILED: Self

Source

pub const DS_HIERARCHY_TABLE_MALLOC_FAILED: Self

Source

pub const DS_INTERNAL_FAILURE: Self

Source

pub const DS_UNKNOWN_ERROR: Self

Source

pub const DS_ROOT_REQUIRES_CLASS_TOP: Self

Source

pub const DS_REFUSING_FSMO_ROLES: Self

Source

pub const DS_MISSING_FSMO_SETTINGS: Self

Source

pub const DS_UNABLE_TO_SURRENDER_ROLES: Self

Source

pub const DS_DRA_GENERIC: Self

Source

pub const DS_DRA_INVALID_PARAMETER: Self

Source

pub const DS_DRA_BUSY: Self

Source

pub const DS_DRA_BAD_DN: Self

Source

pub const DS_DRA_BAD_NC: Self

Source

pub const DS_DRA_DN_EXISTS: Self

Source

pub const DS_DRA_INTERNAL_ERROR: Self

Source

pub const DS_DRA_INCONSISTENT_DIT: Self

Source

pub const DS_DRA_CONNECTION_FAILED: Self

Source

pub const DS_DRA_BAD_INSTANCE_TYPE: Self

Source

pub const DS_DRA_OUT_OF_MEM: Self

Source

pub const DS_DRA_MAIL_PROBLEM: Self

Source

pub const DS_DRA_REF_ALREADY_EXISTS: Self

Source

pub const DS_DRA_REF_NOT_FOUND: Self

Source

pub const DS_DRA_OBJ_IS_REP_SOURCE: Self

Source

pub const DS_DRA_DB_ERROR: Self

Source

pub const DS_DRA_NO_REPLICA: Self

Source

pub const DS_DRA_ACCESS_DENIED: Self

Source

pub const DS_DRA_NOT_SUPPORTED: Self

Source

pub const DS_DRA_RPC_CANCELLED: Self

Source

pub const DS_DRA_SOURCE_DISABLED: Self

Source

pub const DS_DRA_SINK_DISABLED: Self

Source

pub const DS_DRA_NAME_COLLISION: Self

Source

pub const DS_DRA_SOURCE_REINSTALLED: Self

Source

pub const DS_DRA_MISSING_PARENT: Self

Source

pub const DS_DRA_PREEMPTED: Self

Source

pub const DS_DRA_ABANDON_SYNC: Self

Source

pub const DS_DRA_SHUTDOWN: Self

Source

pub const DS_DRA_INCOMPATIBLE_PARTIAL_SET: Self

Source

pub const DS_DRA_SOURCE_IS_PARTIAL_REPLICA: Self

Source

pub const DS_DRA_EXTN_CONNECTION_FAILED: Self

Source

pub const DS_INSTALL_SCHEMA_MISMATCH: Self

Source

pub const DS_NAME_ERROR_RESOLVING: Self

Source

pub const DS_NAME_ERROR_NOT_FOUND: Self

Source

pub const DS_NAME_ERROR_NOT_UNIQUE: Self

Source

pub const DS_NAME_ERROR_NO_MAPPING: Self

Source

pub const DS_NAME_ERROR_DOMAIN_ONLY: Self

Source

pub const DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING: Self

Source

pub const DS_CONSTRUCTED_ATT_MOD: Self

Source

pub const DS_WRONG_OM_OBJ_CLASS: Self

Source

pub const DS_DRA_REPL_PENDING: Self

Source

pub const DS_DS_REQUIRED: Self

Source

pub const DS_INVALID_LDAP_DISPLAY_NAME: Self

Source

pub const DS_CANT_RETRIEVE_ATTS: Self

Source

pub const DS_EPOCH_MISMATCH: Self

Source

pub const DS_SRC_NAME_MISMATCH: Self

Source

pub const DS_SRC_AND_DST_NC_IDENTICAL: Self

Source

pub const DS_DST_NC_MISMATCH: Self

Source

pub const DS_NOT_AUTHORITIVE_FOR_DST_NC: Self

Source

pub const DS_SRC_GUID_MISMATCH: Self

Source

pub const DS_CANT_MOVE_DELETED_OBJECT: Self

Source

pub const DS_PDC_OPERATION_IN_PROGRESS: Self

Source

pub const DS_CROSS_DOMAIN_CLEANUP_REQD: Self

Source

pub const DS_ILLEGAL_XDOM_MOVE_OPERATION: Self

Source

pub const DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS: Self

Source

pub const DS_NC_MUST_HAVE_NC_PARENT: Self

Source

pub const DS_CR_IMPOSSIBLE_TO_VALIDATE: Self

Source

pub const DS_DST_DOMAIN_NOT_NATIVE: Self

Source

pub const DS_MISSING_INFRASTRUCTURE_CONTAINER: Self

Source

pub const DS_CANT_MOVE_ACCOUNT_GROUP: Self

Source

pub const DS_CANT_MOVE_RESOURCE_GROUP: Self

Source

pub const DS_INVALID_SEARCH_FLAG: Self

Source

pub const DS_NO_TREE_DELETE_ABOVE_NC: Self

Source

pub const DS_COULDNT_LOCK_TREE_FOR_DELETE: Self

Source

pub const DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE: Self

Source

pub const DS_SAM_INIT_FAILURE: Self

Source

pub const DS_SENSITIVE_GROUP_VIOLATION: Self

Source

pub const DS_CANT_MOD_PRIMARYGROUPID: Self

Source

pub const DS_ILLEGAL_BASE_SCHEMA_MOD: Self

Source

pub const DS_NONSAFE_SCHEMA_CHANGE: Self

Source

pub const DS_SCHEMA_UPDATE_DISALLOWED: Self

Source

pub const DS_CANT_CREATE_UNDER_SCHEMA: Self

Source

pub const DS_INSTALL_NO_SRC_SCH_VERSION: Self

Source

pub const DS_INSTALL_NO_SCH_VERSION_IN_INIFILE: Self

Source

pub const DS_INVALID_GROUP_TYPE: Self

Source

pub const DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN: Self

Source

pub const DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN: Self

Source

pub const DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER: Self

Source

pub const DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER: Self

Source

pub const DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER: Self

Source

pub const DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER: Self

Source

pub const DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER: Self

Source

pub const DS_HAVE_PRIMARY_MEMBERS: Self

Source

pub const DS_STRING_SD_CONVERSION_FAILED: Self

Source

pub const DS_NAMING_MASTER_GC: Self

Source

pub const DS_DNS_LOOKUP_FAILURE: Self

Source

pub const DS_COULDNT_UPDATE_SPNS: Self

Source

pub const DS_CANT_RETRIEVE_SD: Self

Source

pub const DS_KEY_NOT_UNIQUE: Self

Source

pub const DS_WRONG_LINKED_ATT_SYNTAX: Self

Source

pub const DS_SAM_NEED_BOOTKEY_PASSWORD: Self

Source

pub const DS_SAM_NEED_BOOTKEY_FLOPPY: Self

Source

pub const DS_CANT_START: Self

Source

pub const DS_INIT_FAILURE: Self

Source

pub const DS_NO_PKT_PRIVACY_ON_CONNECTION: Self

Source

pub const DS_SOURCE_DOMAIN_IN_FOREST: Self

Source

pub const DS_DESTINATION_DOMAIN_NOT_IN_FOREST: Self

Source

pub const DS_DESTINATION_AUDITING_NOT_ENABLED: Self

Source

pub const DS_CANT_FIND_DC_FOR_SRC_DOMAIN: Self

Source

pub const DS_SRC_OBJ_NOT_GROUP_OR_USER: Self

Source

pub const DS_SRC_SID_EXISTS_IN_FOREST: Self

Source

pub const DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH: Self

Source

pub const SAM_INIT_FAILURE: Self

Source

pub const DS_DRA_SCHEMA_INFO_SHIP: Self

Source

pub const DS_DRA_SCHEMA_CONFLICT: Self

Source

pub const DS_DRA_EARLIER_SCHEMA_CONFLICT: Self

Source

pub const DS_DRA_OBJ_NC_MISMATCH: Self

Source

pub const DS_NC_STILL_HAS_DSAS: Self

Source

pub const DS_GC_REQUIRED: Self

Source

pub const DS_LOCAL_MEMBER_OF_LOCAL_ONLY: Self

Source

pub const DS_NO_FPO_IN_UNIVERSAL_GROUPS: Self

Source

pub const DS_CANT_ADD_TO_GC: Self

Source

pub const DS_NO_CHECKPOINT_WITH_PDC: Self

Source

pub const DS_SOURCE_AUDITING_NOT_ENABLED: Self

Source

pub const DS_CANT_CREATE_IN_NONDOMAIN_NC: Self

Source

pub const DS_INVALID_NAME_FOR_SPN: Self

Source

pub const DS_FILTER_USES_CONTRUCTED_ATTRS: Self

Source

pub const DS_UNICODEPWD_NOT_IN_QUOTES: Self

Source

pub const DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED: Self

Source

pub const DS_MUST_BE_RUN_ON_DST_DC: Self

Source

pub const DS_SRC_DC_MUST_BE_SP4_OR_GREATER: Self

Source

pub const DS_CANT_TREE_DELETE_CRITICAL_OBJ: Self

Source

pub const DS_INIT_FAILURE_CONSOLE: Self

Source

pub const DS_SAM_INIT_FAILURE_CONSOLE: Self

Source

pub const DS_FOREST_VERSION_TOO_HIGH: Self

Source

pub const DS_DOMAIN_VERSION_TOO_HIGH: Self

Source

pub const DS_FOREST_VERSION_TOO_LOW: Self

Source

pub const DS_DOMAIN_VERSION_TOO_LOW: Self

Source

pub const DS_INCOMPATIBLE_VERSION: Self

Source

pub const DS_LOW_DSA_VERSION: Self

Source

pub const DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN: Self

Source

pub const DS_NOT_SUPPORTED_SORT_ORDER: Self

Source

pub const DS_NAME_NOT_UNIQUE: Self

Source

pub const DS_MACHINE_ACCOUNT_CREATED_PRENT4: Self

Source

pub const DS_OUT_OF_VERSION_STORE: Self

Source

pub const DS_INCOMPATIBLE_CONTROLS_USED: Self

Source

pub const DS_NO_REF_DOMAIN: Self

Source

pub const DS_AG_CANT_HAVE_UNIVERSAL_MEMBER: Self

Source

pub const DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE: Self

Source

pub const DS_NO_OBJECT_MOVE_IN_SCHEMA_NC: Self

Source

pub const DS_MODIFYDN_DISALLOWED_BY_FLAG: Self

Source

pub const DS_MODIFYDN_WRONG_GRANDPARENT: Self

Source

pub const DS_NAME_ERROR_TRUST_REFERRAL: Self

Source

pub const NOT_SUPPORTED_ON_STANDARD_SERVER: Self

Source

pub const DS_CANT_ACCESS_REMOTE_PART_OF_AD: Self

Source

pub const DS_CR_IMPOSSIBLE_TO_VALIDATE_V2: Self

Source

pub const DS_THREAD_LIMIT_EXCEEDED: Self

Source

pub const DS_NOT_CLOSEST: Self

Source

pub const DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF: Self

Source

pub const DS_SINGLE_USER_MODE_FAILED: Self

Source

pub const DS_NTDSCRIPT_SYNTAX_ERROR: Self

Source

pub const DS_NTDSCRIPT_PROCESS_ERROR: Self

Source

pub const DS_DIFFERENT_REPL_EPOCHS: Self

Source

pub const DS_DRS_EXTENSIONS_CHANGED: Self

Source

pub const DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR: Self

Source

pub const DS_NO_MSDS_INTID: Self

Source

pub const DS_DUP_MSDS_INTID: Self

Source

pub const DS_EXISTS_IN_RDNATTID: Self

Source

pub const DS_AUTHORIZATION_FAILED: Self

Source

pub const DS_INVALID_SCRIPT: Self

Source

pub const DS_REMOTE_CROSSREF_OP_FAILED: Self

Source

pub const DS_CROSS_REF_BUSY: Self

Source

pub const DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN: Self

Source

pub const DS_CANT_DEMOTE_WITH_WRITEABLE_NC: Self

Source

pub const DS_DUPLICATE_ID_FOUND: Self

Source

pub const DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT: Self

Source

pub const DS_GROUP_CONVERSION_ERROR: Self

Source

pub const DS_CANT_MOVE_APP_BASIC_GROUP: Self

Source

pub const DS_CANT_MOVE_APP_QUERY_GROUP: Self

Source

pub const DS_ROLE_NOT_VERIFIED: Self

Source

pub const DS_WKO_CONTAINER_CANNOT_BE_SPECIAL: Self

Source

pub const DS_DOMAIN_RENAME_IN_PROGRESS: Self

Source

pub const DS_EXISTING_AD_CHILD_NC: Self

Source

pub const DS_REPL_LIFETIME_EXCEEDED: Self

Source

pub const DS_DISALLOWED_IN_SYSTEM_CONTAINER: Self

Source

pub const DS_LDAP_SEND_QUEUE_FULL: Self

Source

pub const DS_DRA_OUT_SCHEDULE_WINDOW: Self

Source

pub const DS_POLICY_NOT_KNOWN: Self

Source

pub const NO_SITE_SETTINGS_OBJECT: Self

Source

pub const NO_SECRETS: Self

Source

pub const NO_WRITABLE_DC_FOUND: Self

Source

pub const DS_NO_SERVER_OBJECT: Self

Source

pub const DS_NO_NTDSA_OBJECT: Self

Source

pub const DS_AUDIT_FAILURE: Self

Source

pub const DS_INVALID_SEARCH_FLAG_SUBTREE: Self

Source

pub const DS_INVALID_SEARCH_FLAG_TUPLE: Self

Source

pub const DS_HIERARCHY_TABLE_TOO_DEEP: Self

Source

pub const DS_DRA_CORRUPT_UTD_VECTOR: Self

Source

pub const DS_DRA_SECRETS_DENIED: Self

Source

pub const DS_RESERVED_MAPI_ID: Self

Source

pub const DS_MAPI_ID_NOT_AVAILABLE: Self

Source

pub const DS_DRA_MISSING_KRBTGT_SECRET: Self

Source

pub const DS_DOMAIN_NAME_EXISTS_IN_FOREST: Self

Source

pub const DS_FLAT_NAME_EXISTS_IN_FOREST: Self

Source

pub const INVALID_USER_PRINCIPAL_NAME: Self

Source

pub const DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS: Self

Source

pub const DS_OID_NOT_FOUND: Self

Source

pub const DS_DRA_RECYCLED_TARGET: Self

Source

pub const DS_DISALLOWED_NC_REDIRECT: Self

Source

pub const DS_HIGH_ADLDS_FFL: Self

Source

pub const DS_HIGH_DSA_VERSION: Self

Source

pub const DS_LOW_ADLDS_FFL: Self

Source

pub const DOMAIN_SID_SAME_AS_LOCAL_WORKSTATION: Self

Source

pub const DS_UNDELETE_SAM_VALIDATION_FAILED: Self

Source

pub const INCORRECT_ACCOUNT_TYPE: Self

Source

pub const DS_SPN_VALUE_NOT_UNIQUE_IN_FOREST: Self

Source

pub const DS_UPN_VALUE_NOT_UNIQUE_IN_FOREST: Self

Source

pub const DS_MISSING_FOREST_TRUST: Self

Source

pub const DS_VALUE_KEY_NOT_UNIQUE: Self

Source

pub const IPSEC_QM_POLICY_EXISTS: Self

Source

pub const IPSEC_QM_POLICY_NOT_FOUND: Self

Source

pub const IPSEC_QM_POLICY_IN_USE: Self

Source

pub const IPSEC_MM_POLICY_EXISTS: Self

Source

pub const IPSEC_MM_POLICY_NOT_FOUND: Self

Source

pub const IPSEC_MM_POLICY_IN_USE: Self

Source

pub const IPSEC_MM_FILTER_EXISTS: Self

Source

pub const IPSEC_MM_FILTER_NOT_FOUND: Self

Source

pub const IPSEC_TRANSPORT_FILTER_EXISTS: Self

Source

pub const IPSEC_TRANSPORT_FILTER_NOT_FOUND: Self

Source

pub const IPSEC_MM_AUTH_EXISTS: Self

Source

pub const IPSEC_MM_AUTH_NOT_FOUND: Self

Source

pub const IPSEC_MM_AUTH_IN_USE: Self

Source

pub const IPSEC_DEFAULT_MM_POLICY_NOT_FOUND: Self

Source

pub const IPSEC_DEFAULT_MM_AUTH_NOT_FOUND: Self

Source

pub const IPSEC_DEFAULT_QM_POLICY_NOT_FOUND: Self

Source

pub const IPSEC_TUNNEL_FILTER_EXISTS: Self

Source

pub const IPSEC_TUNNEL_FILTER_NOT_FOUND: Self

Source

pub const IPSEC_MM_FILTER_PENDING_DELETION: Self

Source

pub const IPSEC_TRANSPORT_FILTER_PENDING_DELETION: Self

Source

pub const IPSEC_TUNNEL_FILTER_PENDING_DELETION: Self

Source

pub const IPSEC_MM_POLICY_PENDING_DELETION: Self

Source

pub const IPSEC_MM_AUTH_PENDING_DELETION: Self

Source

pub const IPSEC_QM_POLICY_PENDING_DELETION: Self

Source

pub const IPSEC_IKE_NEG_STATUS_BEGIN: Self

Source

pub const IPSEC_IKE_AUTH_FAIL: Self

Source

pub const IPSEC_IKE_ATTRIB_FAIL: Self

Source

pub const IPSEC_IKE_NEGOTIATION_PENDING: Self

Source

pub const IPSEC_IKE_GENERAL_PROCESSING_ERROR: Self

Source

pub const IPSEC_IKE_TIMED_OUT: Self

Source

pub const IPSEC_IKE_NO_CERT: Self

Source

pub const IPSEC_IKE_SA_DELETED: Self

Source

pub const IPSEC_IKE_SA_REAPED: Self

Source

pub const IPSEC_IKE_MM_ACQUIRE_DROP: Self

Source

pub const IPSEC_IKE_QM_ACQUIRE_DROP: Self

Source

pub const IPSEC_IKE_QUEUE_DROP_MM: Self

Source

pub const IPSEC_IKE_QUEUE_DROP_NO_MM: Self

Source

pub const IPSEC_IKE_DROP_NO_RESPONSE: Self

Source

pub const IPSEC_IKE_MM_DELAY_DROP: Self

Source

pub const IPSEC_IKE_QM_DELAY_DROP: Self

Source

pub const IPSEC_IKE_ERROR: Self

Source

pub const IPSEC_IKE_CRL_FAILED: Self

Source

pub const IPSEC_IKE_INVALID_KEY_USAGE: Self

Source

pub const IPSEC_IKE_INVALID_CERT_TYPE: Self

Source

pub const IPSEC_IKE_NO_PRIVATE_KEY: Self

Source

pub const IPSEC_IKE_SIMULTANEOUS_REKEY: Self

Source

pub const IPSEC_IKE_DH_FAIL: Self

Source

pub const IPSEC_IKE_CRITICAL_PAYLOAD_NOT_RECOGNIZED: Self

Source

pub const IPSEC_IKE_INVALID_HEADER: Self

Source

pub const IPSEC_IKE_NO_POLICY: Self

Source

pub const IPSEC_IKE_INVALID_SIGNATURE: Self

Source

pub const IPSEC_IKE_KERBEROS_ERROR: Self

Source

pub const IPSEC_IKE_NO_PUBLIC_KEY: Self

Source

pub const IPSEC_IKE_PROCESS_ERR: Self

Source

pub const IPSEC_IKE_PROCESS_ERR_SA: Self

Source

pub const IPSEC_IKE_PROCESS_ERR_PROP: Self

Source

pub const IPSEC_IKE_PROCESS_ERR_TRANS: Self

Source

pub const IPSEC_IKE_PROCESS_ERR_KE: Self

Source

pub const IPSEC_IKE_PROCESS_ERR_ID: Self

Source

pub const IPSEC_IKE_PROCESS_ERR_CERT: Self

Source

pub const IPSEC_IKE_PROCESS_ERR_CERT_REQ: Self

Source

pub const IPSEC_IKE_PROCESS_ERR_HASH: Self

Source

pub const IPSEC_IKE_PROCESS_ERR_SIG: Self

Source

pub const IPSEC_IKE_PROCESS_ERR_NONCE: Self

Source

pub const IPSEC_IKE_PROCESS_ERR_NOTIFY: Self

Source

pub const IPSEC_IKE_PROCESS_ERR_DELETE: Self

Source

pub const IPSEC_IKE_PROCESS_ERR_VENDOR: Self

Source

pub const IPSEC_IKE_INVALID_PAYLOAD: Self

Source

pub const IPSEC_IKE_LOAD_SOFT_SA: Self

Source

pub const IPSEC_IKE_SOFT_SA_TORN_DOWN: Self

Source

pub const IPSEC_IKE_NO_PEER_CERT: Self

Source

pub const IPSEC_IKE_PEER_CRL_FAILED: Self

Source

pub const IPSEC_IKE_POLICY_CHANGE: Self

Source

pub const IPSEC_IKE_NO_MM_POLICY: Self

Source

pub const IPSEC_IKE_NOTCBPRIV: Self

Source

pub const IPSEC_IKE_SECLOADFAIL: Self

Source

pub const IPSEC_IKE_FAILSSPINIT: Self

Source

pub const IPSEC_IKE_FAILQUERYSSP: Self

Source

pub const IPSEC_IKE_SRVACQFAIL: Self

Source

pub const IPSEC_IKE_SRVQUERYCRED: Self

Source

pub const IPSEC_IKE_GETSPIFAIL: Self

Source

pub const IPSEC_IKE_INVALID_FILTER: Self

Source

pub const IPSEC_IKE_OUT_OF_MEMORY: Self

Source

pub const IPSEC_IKE_ADD_UPDATE_KEY_FAILED: Self

Source

pub const IPSEC_IKE_INVALID_POLICY: Self

Source

pub const IPSEC_IKE_UNKNOWN_DOI: Self

Source

pub const IPSEC_IKE_INVALID_SITUATION: Self

Source

pub const IPSEC_IKE_DH_FAILURE: Self

Source

pub const IPSEC_IKE_INVALID_GROUP: Self

Source

pub const IPSEC_IKE_ENCRYPT: Self

Source

pub const IPSEC_IKE_DECRYPT: Self

Source

pub const IPSEC_IKE_POLICY_MATCH: Self

Source

pub const IPSEC_IKE_UNSUPPORTED_ID: Self

Source

pub const IPSEC_IKE_INVALID_HASH: Self

Source

pub const IPSEC_IKE_INVALID_HASH_ALG: Self

Source

pub const IPSEC_IKE_INVALID_HASH_SIZE: Self

Source

pub const IPSEC_IKE_INVALID_ENCRYPT_ALG: Self

Source

pub const IPSEC_IKE_INVALID_AUTH_ALG: Self

Source

pub const IPSEC_IKE_INVALID_SIG: Self

Source

pub const IPSEC_IKE_LOAD_FAILED: Self

Source

pub const IPSEC_IKE_RPC_DELETE: Self

Source

pub const IPSEC_IKE_BENIGN_REINIT: Self

Source

pub const IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY: Self

Source

pub const IPSEC_IKE_INVALID_MAJOR_VERSION: Self

Source

pub const IPSEC_IKE_INVALID_CERT_KEYLEN: Self

Source

pub const IPSEC_IKE_MM_LIMIT: Self

Source

pub const IPSEC_IKE_NEGOTIATION_DISABLED: Self

Source

pub const IPSEC_IKE_QM_LIMIT: Self

Source

pub const IPSEC_IKE_MM_EXPIRED: Self

Source

pub const IPSEC_IKE_PEER_MM_ASSUMED_INVALID: Self

Source

pub const IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH: Self

Source

pub const IPSEC_IKE_UNEXPECTED_MESSAGE_ID: Self

Source

pub const IPSEC_IKE_INVALID_AUTH_PAYLOAD: Self

Source

pub const IPSEC_IKE_SHUTTING_DOWN: Self

Source

pub const IPSEC_IKE_CGA_AUTH_FAILED: Self

Source

pub const IPSEC_IKE_PROCESS_ERR_NATOA: Self

Source

pub const IPSEC_IKE_INVALID_MM_FOR_QM: Self

Source

pub const IPSEC_IKE_QM_EXPIRED: Self

Source

pub const IPSEC_IKE_TOO_MANY_FILTERS: Self

Source

pub const IPSEC_IKE_NEG_STATUS_END: Self

Source

pub const IPSEC_IKE_KILL_DUMMY_NAP_TUNNEL: Self

Source

pub const IPSEC_IKE_INNER_IP_ASSIGNMENT_FAILURE: Self

Source

pub const IPSEC_IKE_REQUIRE_CP_PAYLOAD_MISSING: Self

Source

pub const IPSEC_KEY_MODULE_IMPERSONATION_NEGOTIATION_PENDING: Self

Source

pub const IPSEC_IKE_COEXISTENCE_SUPPRESS: Self

Source

pub const IPSEC_IKE_RATELIMIT_DROP: Self

Source

pub const IPSEC_IKE_PEER_DOESNT_SUPPORT_MOBIKE: Self

Source

pub const IPSEC_IKE_AUTHORIZATION_FAILURE: Self

Source

pub const IPSEC_IKE_STRONG_CRED_AUTHORIZATION_FAILURE: Self

Source

pub const IPSEC_IKE_AUTHORIZATION_FAILURE_WITH_OPTIONAL_RETRY: Self

Source

pub const IPSEC_IKE_STRONG_CRED_AUTHORIZATION_AND_CERTMAP_FAILURE: Self

Source

pub const IPSEC_IKE_NEG_STATUS_EXTENDED_END: Self

Source

pub const IPSEC_BAD_SPI: Self

Source

pub const IPSEC_SA_LIFETIME_EXPIRED: Self

Source

pub const IPSEC_WRONG_SA: Self

Source

pub const IPSEC_REPLAY_CHECK_FAILED: Self

Source

pub const IPSEC_INVALID_PACKET: Self

Source

pub const IPSEC_INTEGRITY_CHECK_FAILED: Self

Source

pub const IPSEC_CLEAR_TEXT_DROP: Self

Source

pub const IPSEC_AUTH_FIREWALL_DROP: Self

Source

pub const IPSEC_THROTTLE_DROP: Self

Source

pub const IPSEC_DOSP_BLOCK: Self

Source

pub const IPSEC_DOSP_RECEIVED_MULTICAST: Self

Source

pub const IPSEC_DOSP_INVALID_PACKET: Self

Source

pub const IPSEC_DOSP_STATE_LOOKUP_FAILED: Self

Source

pub const IPSEC_DOSP_MAX_ENTRIES: Self

Source

pub const IPSEC_DOSP_KEYMOD_NOT_ALLOWED: Self

Source

pub const IPSEC_DOSP_NOT_INSTALLED: Self

Source

pub const IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES: Self

Source

pub const SXS_SECTION_NOT_FOUND: Self

Source

pub const SXS_CANT_GEN_ACTCTX: Self

Source

pub const SXS_INVALID_ACTCTXDATA_FORMAT: Self

Source

pub const SXS_ASSEMBLY_NOT_FOUND: Self

Source

pub const SXS_MANIFEST_FORMAT_ERROR: Self

Source

pub const SXS_MANIFEST_PARSE_ERROR: Self

Source

pub const SXS_ACTIVATION_CONTEXT_DISABLED: Self

Source

pub const SXS_KEY_NOT_FOUND: Self

Source

pub const SXS_VERSION_CONFLICT: Self

Source

pub const SXS_WRONG_SECTION_TYPE: Self

Source

pub const SXS_THREAD_QUERIES_DISABLED: Self

Source

pub const SXS_PROCESS_DEFAULT_ALREADY_SET: Self

Source

pub const SXS_UNKNOWN_ENCODING_GROUP: Self

Source

pub const SXS_UNKNOWN_ENCODING: Self

Source

pub const SXS_INVALID_XML_NAMESPACE_URI: Self

Source

pub const SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED: Self

Source

pub const SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED: Self

Source

pub const SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE: Self

Source

pub const SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE: Self

Source

pub const SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE: Self

Source

pub const SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT: Self

Source

pub const SXS_DUPLICATE_DLL_NAME: Self

Source

pub const SXS_DUPLICATE_WINDOWCLASS_NAME: Self

Source

pub const SXS_DUPLICATE_CLSID: Self

Source

pub const SXS_DUPLICATE_IID: Self

Source

pub const SXS_DUPLICATE_TLBID: Self

Source

pub const SXS_DUPLICATE_PROGID: Self

Source

pub const SXS_DUPLICATE_ASSEMBLY_NAME: Self

Source

pub const SXS_FILE_HASH_MISMATCH: Self

Source

pub const SXS_POLICY_PARSE_ERROR: Self

Source

pub const SXS_XML_E_MISSINGQUOTE: Self

Source

pub const SXS_XML_E_COMMENTSYNTAX: Self

Source

pub const SXS_XML_E_BADSTARTNAMECHAR: Self

Source

pub const SXS_XML_E_BADNAMECHAR: Self

Source

pub const SXS_XML_E_BADCHARINSTRING: Self

Source

pub const SXS_XML_E_XMLDECLSYNTAX: Self

Source

pub const SXS_XML_E_BADCHARDATA: Self

Source

pub const SXS_XML_E_MISSINGWHITESPACE: Self

Source

pub const SXS_XML_E_EXPECTINGTAGEND: Self

Source

pub const SXS_XML_E_MISSINGSEMICOLON: Self

Source

pub const SXS_XML_E_UNBALANCEDPAREN: Self

Source

pub const SXS_XML_E_INTERNALERROR: Self

Source

pub const SXS_XML_E_UNEXPECTED_WHITESPACE: Self

Source

pub const SXS_XML_E_INCOMPLETE_ENCODING: Self

Source

pub const SXS_XML_E_MISSING_PAREN: Self

Source

pub const SXS_XML_E_EXPECTINGCLOSEQUOTE: Self

Source

pub const SXS_XML_E_MULTIPLE_COLONS: Self

Source

pub const SXS_XML_E_INVALID_DECIMAL: Self

Source

pub const SXS_XML_E_INVALID_HEXIDECIMAL: Self

Source

pub const SXS_XML_E_INVALID_UNICODE: Self

Source

pub const SXS_XML_E_WHITESPACEORQUESTIONMARK: Self

Source

pub const SXS_XML_E_UNEXPECTEDENDTAG: Self

Source

pub const SXS_XML_E_UNCLOSEDTAG: Self

Source

pub const SXS_XML_E_DUPLICATEATTRIBUTE: Self

Source

pub const SXS_XML_E_MULTIPLEROOTS: Self

Source

pub const SXS_XML_E_INVALIDATROOTLEVEL: Self

Source

pub const SXS_XML_E_BADXMLDECL: Self

Source

pub const SXS_XML_E_MISSINGROOT: Self

Source

pub const SXS_XML_E_UNEXPECTEDEOF: Self

Source

pub const SXS_XML_E_BADPEREFINSUBSET: Self

Source

pub const SXS_XML_E_UNCLOSEDSTARTTAG: Self

Source

pub const SXS_XML_E_UNCLOSEDENDTAG: Self

Source

pub const SXS_XML_E_UNCLOSEDSTRING: Self

Source

pub const SXS_XML_E_UNCLOSEDCOMMENT: Self

Source

pub const SXS_XML_E_UNCLOSEDDECL: Self

Source

pub const SXS_XML_E_UNCLOSEDCDATA: Self

Source

pub const SXS_XML_E_RESERVEDNAMESPACE: Self

Source

pub const SXS_XML_E_INVALIDENCODING: Self

Source

pub const SXS_XML_E_INVALIDSWITCH: Self

Source

pub const SXS_XML_E_BADXMLCASE: Self

Source

pub const SXS_XML_E_INVALID_STANDALONE: Self

Source

pub const SXS_XML_E_UNEXPECTED_STANDALONE: Self

Source

pub const SXS_XML_E_INVALID_VERSION: Self

Source

pub const SXS_XML_E_MISSINGEQUALS: Self

Source

pub const SXS_PROTECTION_RECOVERY_FAILED: Self

Source

pub const SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT: Self

Source

pub const SXS_PROTECTION_CATALOG_NOT_VALID: Self

Source

pub const SXS_UNTRANSLATABLE_HRESULT: Self

Source

pub const SXS_PROTECTION_CATALOG_FILE_MISSING: Self

Source

pub const SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE: Self

Source

pub const SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME: Self

Source

pub const SXS_ASSEMBLY_MISSING: Self

Source

pub const SXS_CORRUPT_ACTIVATION_STACK: Self

Source

pub const SXS_CORRUPTION: Self

Source

pub const SXS_EARLY_DEACTIVATION: Self

Source

pub const SXS_INVALID_DEACTIVATION: Self

Source

pub const SXS_MULTIPLE_DEACTIVATION: Self

Source

pub const SXS_PROCESS_TERMINATION_REQUESTED: Self

Source

pub const SXS_RELEASE_ACTIVATION_CONTEXT: Self

Source

pub const SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY: Self

Source

pub const SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE: Self

Source

pub const SXS_INVALID_IDENTITY_ATTRIBUTE_NAME: Self

Source

pub const SXS_IDENTITY_DUPLICATE_ATTRIBUTE: Self

Source

pub const SXS_IDENTITY_PARSE_ERROR: Self

Source

pub const MALFORMED_SUBSTITUTION_STRING: Self

Source

pub const SXS_INCORRECT_PUBLIC_KEY_TOKEN: Self

Source

pub const UNMAPPED_SUBSTITUTION_STRING: Self

Source

pub const SXS_ASSEMBLY_NOT_LOCKED: Self

Source

pub const SXS_COMPONENT_STORE_CORRUPT: Self

Source

pub const ADVANCED_INSTALLER_FAILED: Self

Source

pub const XML_ENCODING_MISMATCH: Self

Source

pub const SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT: Self

Source

pub const SXS_IDENTITIES_DIFFERENT: Self

Source

pub const SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT: Self

Source

pub const SXS_FILE_NOT_PART_OF_ASSEMBLY: Self

Source

pub const SXS_MANIFEST_TOO_BIG: Self

Source

pub const SXS_SETTING_NOT_REGISTERED: Self

Source

pub const SXS_TRANSACTION_CLOSURE_INCOMPLETE: Self

Source

pub const SMI_PRIMITIVE_INSTALLER_FAILED: Self

Source

pub const GENERIC_COMMAND_FAILED: Self

Source

pub const SXS_FILE_HASH_MISSING: Self

Source

pub const SXS_DUPLICATE_ACTIVATABLE_CLASS: Self

Source

pub const EVT_INVALID_CHANNEL_PATH: Self

Source

pub const EVT_INVALID_QUERY: Self

Source

pub const EVT_PUBLISHER_METADATA_NOT_FOUND: Self

Source

pub const EVT_EVENT_TEMPLATE_NOT_FOUND: Self

Source

pub const EVT_INVALID_PUBLISHER_NAME: Self

Source

pub const EVT_INVALID_EVENT_DATA: Self

Source

pub const EVT_CHANNEL_NOT_FOUND: Self

Source

pub const EVT_MALFORMED_XML_TEXT: Self

Source

pub const EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL: Self

Source

pub const EVT_CONFIGURATION_ERROR: Self

Source

pub const EVT_QUERY_RESULT_STALE: Self

Source

pub const EVT_QUERY_RESULT_INVALID_POSITION: Self

Source

pub const EVT_NON_VALIDATING_MSXML: Self

Source

pub const EVT_FILTER_ALREADYSCOPED: Self

Source

pub const EVT_FILTER_NOTELTSET: Self

Source

pub const EVT_FILTER_INVARG: Self

Source

pub const EVT_FILTER_INVTEST: Self

Source

pub const EVT_FILTER_INVTYPE: Self

Source

pub const EVT_FILTER_PARSEERR: Self

Source

pub const EVT_FILTER_UNSUPPORTEDOP: Self

Source

pub const EVT_FILTER_UNEXPECTEDTOKEN: Self

Source

pub const EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL: Self

Source

pub const EVT_INVALID_CHANNEL_PROPERTY_VALUE: Self

Source

pub const EVT_INVALID_PUBLISHER_PROPERTY_VALUE: Self

Source

pub const EVT_CHANNEL_CANNOT_ACTIVATE: Self

Source

pub const EVT_FILTER_TOO_COMPLEX: Self

Source

pub const EVT_MESSAGE_NOT_FOUND: Self

Source

pub const EVT_MESSAGE_ID_NOT_FOUND: Self

Source

pub const EVT_UNRESOLVED_VALUE_INSERT: Self

Source

pub const EVT_UNRESOLVED_PARAMETER_INSERT: Self

Source

pub const EVT_MAX_INSERTS_REACHED: Self

Source

pub const EVT_EVENT_DEFINITION_NOT_FOUND: Self

Source

pub const EVT_MESSAGE_LOCALE_NOT_FOUND: Self

Source

pub const EVT_VERSION_TOO_OLD: Self

Source

pub const EVT_VERSION_TOO_NEW: Self

Source

pub const EVT_CANNOT_OPEN_CHANNEL_OF_QUERY: Self

Source

pub const EVT_PUBLISHER_DISABLED: Self

Source

pub const EVT_FILTER_OUT_OF_RANGE: Self

Source

pub const EC_SUBSCRIPTION_CANNOT_ACTIVATE: Self

Source

pub const EC_LOG_DISABLED: Self

Source

pub const EC_CIRCULAR_FORWARDING: Self

Source

pub const EC_CREDSTORE_FULL: Self

Source

pub const EC_CRED_NOT_FOUND: Self

Source

pub const EC_NO_ACTIVE_CHANNEL: Self

Source

pub const MUI_FILE_NOT_FOUND: Self

Source

pub const MUI_INVALID_FILE: Self

Source

pub const MUI_INVALID_RC_CONFIG: Self

Source

pub const MUI_INVALID_LOCALE_NAME: Self

Source

pub const MUI_INVALID_ULTIMATEFALLBACK_NAME: Self

Source

pub const MUI_FILE_NOT_LOADED: Self

Source

pub const RESOURCE_ENUM_USER_STOP: Self

Source

pub const MUI_INTLSETTINGS_UILANG_NOT_INSTALLED: Self

Source

pub const MUI_INTLSETTINGS_INVALID_LOCALE_NAME: Self

Source

pub const MRM_RUNTIME_NO_DEFAULT_OR_NEUTRAL_RESOURCE: Self

Source

pub const MRM_INVALID_PRICONFIG: Self

Source

pub const MRM_INVALID_FILE_TYPE: Self

Source

pub const MRM_UNKNOWN_QUALIFIER: Self

Source

pub const MRM_INVALID_QUALIFIER_VALUE: Self

Source

pub const MRM_NO_CANDIDATE: Self

Source

pub const MRM_NO_MATCH_OR_DEFAULT_CANDIDATE: Self

Source

pub const MRM_RESOURCE_TYPE_MISMATCH: Self

Source

pub const MRM_DUPLICATE_MAP_NAME: Self

Source

pub const MRM_DUPLICATE_ENTRY: Self

Source

pub const MRM_INVALID_RESOURCE_IDENTIFIER: Self

Source

pub const MRM_FILEPATH_TOO_LONG: Self

Source

pub const MRM_UNSUPPORTED_DIRECTORY_TYPE: Self

Source

pub const MRM_INVALID_PRI_FILE: Self

Source

pub const MRM_NAMED_RESOURCE_NOT_FOUND: Self

Source

pub const MRM_MAP_NOT_FOUND: Self

Source

pub const MRM_UNSUPPORTED_PROFILE_TYPE: Self

Source

pub const MRM_INVALID_QUALIFIER_OPERATOR: Self

Source

pub const MRM_INDETERMINATE_QUALIFIER_VALUE: Self

Source

pub const MRM_AUTOMERGE_ENABLED: Self

Source

pub const MRM_TOO_MANY_RESOURCES: Self

Source

pub const MRM_UNSUPPORTED_FILE_TYPE_FOR_MERGE: Self

Source

pub const MRM_UNSUPPORTED_FILE_TYPE_FOR_LOAD_UNLOAD_PRI_FILE: Self

Source

pub const MRM_NO_CURRENT_VIEW_ON_THREAD: Self

Source

pub const DIFFERENT_PROFILE_RESOURCE_MANAGER_EXIST: Self

Source

pub const OPERATION_NOT_ALLOWED_FROM_SYSTEM_COMPONENT: Self

Source

pub const MRM_DIRECT_REF_TO_NON_DEFAULT_RESOURCE: Self

Source

pub const MRM_GENERATION_COUNT_MISMATCH: Self

Source

pub const PRI_MERGE_VERSION_MISMATCH: Self

Source

pub const PRI_MERGE_MISSING_SCHEMA: Self

Source

pub const PRI_MERGE_LOAD_FILE_FAILED: Self

Source

pub const PRI_MERGE_ADD_FILE_FAILED: Self

Source

pub const PRI_MERGE_WRITE_FILE_FAILED: Self

Source

pub const PRI_MERGE_MULTIPLE_PACKAGE_FAMILIES_NOT_ALLOWED: Self

Source

pub const PRI_MERGE_MULTIPLE_MAIN_PACKAGES_NOT_ALLOWED: Self

Source

pub const PRI_MERGE_BUNDLE_PACKAGES_NOT_ALLOWED: Self

Source

pub const PRI_MERGE_MAIN_PACKAGE_REQUIRED: Self

Source

pub const PRI_MERGE_RESOURCE_PACKAGE_REQUIRED: Self

Source

pub const PRI_MERGE_INVALID_FILE_NAME: Self

Source

pub const MRM_PACKAGE_NOT_FOUND: Self

Source

pub const MRM_MISSING_DEFAULT_LANGUAGE: Self

Source

pub const MCA_INVALID_CAPABILITIES_STRING: Self

Source

pub const MCA_INVALID_VCP_VERSION: Self

Source

pub const MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION: Self

Source

pub const MCA_MCCS_VERSION_MISMATCH: Self

Source

pub const MCA_UNSUPPORTED_MCCS_VERSION: Self

Source

pub const MCA_INTERNAL_ERROR: Self

Source

pub const MCA_INVALID_TECHNOLOGY_TYPE_RETURNED: Self

Source

pub const MCA_UNSUPPORTED_COLOR_TEMPERATURE: Self

Source

pub const AMBIGUOUS_SYSTEM_DEVICE: Self

Source

pub const SYSTEM_DEVICE_NOT_FOUND: Self

Source

pub const HASH_NOT_SUPPORTED: Self

Source

pub const HASH_NOT_PRESENT: Self

Source

pub const SECONDARY_IC_PROVIDER_NOT_REGISTERED: Self

Source

pub const GPIO_CLIENT_INFORMATION_INVALID: Self

Source

pub const GPIO_VERSION_NOT_SUPPORTED: Self

Source

pub const GPIO_INVALID_REGISTRATION_PACKET: Self

Source

pub const GPIO_OPERATION_DENIED: Self

Source

pub const GPIO_INCOMPATIBLE_CONNECT_MODE: Self

Source

pub const GPIO_INTERRUPT_ALREADY_UNMASKED: Self

Source

pub const CANNOT_SWITCH_RUNLEVEL: Self

Source

pub const INVALID_RUNLEVEL_SETTING: Self

Source

pub const RUNLEVEL_SWITCH_TIMEOUT: Self

Source

pub const RUNLEVEL_SWITCH_AGENT_TIMEOUT: Self

Source

pub const RUNLEVEL_SWITCH_IN_PROGRESS: Self

Source

pub const SERVICES_FAILED_AUTOSTART: Self

Source

pub const COM_TASK_STOP_PENDING: Self

Source

pub const INSTALL_OPEN_PACKAGE_FAILED: Self

Source

pub const INSTALL_PACKAGE_NOT_FOUND: Self

Source

pub const INSTALL_INVALID_PACKAGE: Self

Source

pub const INSTALL_RESOLVE_DEPENDENCY_FAILED: Self

Source

pub const INSTALL_OUT_OF_DISK_SPACE: Self

Source

pub const INSTALL_NETWORK_FAILURE: Self

Source

pub const INSTALL_REGISTRATION_FAILURE: Self

Source

pub const INSTALL_DEREGISTRATION_FAILURE: Self

Source

pub const INSTALL_CANCEL: Self

Source

pub const INSTALL_FAILED: Self

Source

pub const REMOVE_FAILED: Self

Source

pub const PACKAGE_ALREADY_EXISTS: Self

Source

pub const NEEDS_REMEDIATION: Self

Source

pub const INSTALL_PREREQUISITE_FAILED: Self

Source

pub const PACKAGE_REPOSITORY_CORRUPTED: Self

Source

pub const INSTALL_POLICY_FAILURE: Self

Source

pub const PACKAGE_UPDATING: Self

Source

pub const DEPLOYMENT_BLOCKED_BY_POLICY: Self

Source

pub const PACKAGES_IN_USE: Self

Source

pub const RECOVERY_FILE_CORRUPT: Self

Source

pub const INVALID_STAGED_SIGNATURE: Self

Source

pub const DELETING_EXISTING_APPLICATIONDATA_STORE_FAILED: Self

Source

pub const INSTALL_PACKAGE_DOWNGRADE: Self

Source

pub const SYSTEM_NEEDS_REMEDIATION: Self

Source

pub const APPX_INTEGRITY_FAILURE_CLR_NGEN: Self

Source

pub const RESILIENCY_FILE_CORRUPT: Self

Source

pub const INSTALL_FIREWALL_SERVICE_NOT_RUNNING: Self

Source

pub const PACKAGE_MOVE_FAILED: Self

Source

pub const INSTALL_VOLUME_NOT_EMPTY: Self

Source

pub const INSTALL_VOLUME_OFFLINE: Self

Source

pub const INSTALL_VOLUME_CORRUPT: Self

Source

pub const NEEDS_REGISTRATION: Self

Source

pub const INSTALL_WRONG_PROCESSOR_ARCHITECTURE: Self

Source

pub const DEV_SIDELOAD_LIMIT_EXCEEDED: Self

Source

pub const INSTALL_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE: Self

Source

pub const PACKAGE_NOT_SUPPORTED_ON_FILESYSTEM: Self

Source

pub const PACKAGE_MOVE_BLOCKED_BY_STREAMING: Self

Source

pub const INSTALL_OPTIONAL_PACKAGE_APPLICATIONID_NOT_UNIQUE: Self

Source

pub const PACKAGE_STAGING_ONHOLD: Self

Source

pub const INSTALL_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE_FULLTRUST_CAPABILITY: Self

Source

pub const DEPLOYMENT_BLOCKED_BY_USER_LOG_OFF: Self

Source

pub const PROVISION_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE_PROVISIONED: Self

Source

pub const PACKAGES_REPUTATION_CHECK_FAILED: Self

Source

pub const PACKAGES_REPUTATION_CHECK_TIMEDOUT: Self

Source

pub const DEPLOYMENT_OPTION_NOT_SUPPORTED: Self

Source

pub const APPINSTALLER_ACTIVATION_BLOCKED: Self

Source

pub const REGISTRATION_FROM_REMOTE_DRIVE_NOT_SUPPORTED: Self

Source

pub const APPX_RAW_DATA_WRITE_FAILED: Self

Source

pub const DEPLOYMENT_BLOCKED_BY_VOLUME_POLICY_PACKAGE: Self

Source

pub const DEPLOYMENT_BLOCKED_BY_VOLUME_POLICY_MACHINE: Self

Source

pub const DEPLOYMENT_BLOCKED_BY_PROFILE_POLICY: Self

Source

pub const DEPLOYMENT_FAILED_CONFLICTING_MUTABLE_PACKAGE_DIRECTORY: Self

Source

pub const SINGLETON_RESOURCE_INSTALLED_IN_ACTIVE_USER: Self

Source

pub const DIFFERENT_VERSION_OF_PACKAGED_SERVICE_INSTALLED: Self

Source

pub const SERVICE_EXISTS_AS_NON_PACKAGED_SERVICE: Self

Source

pub const PACKAGED_SERVICE_REQUIRES_ADMIN_PRIVILEGES: Self

Source

pub const STATE_LOAD_STORE_FAILED: Self

Source

pub const STATE_GET_VERSION_FAILED: Self

Source

pub const STATE_SET_VERSION_FAILED: Self

Source

pub const STATE_STRUCTURED_RESET_FAILED: Self

Source

pub const STATE_OPEN_CONTAINER_FAILED: Self

Source

pub const STATE_CREATE_CONTAINER_FAILED: Self

Source

pub const STATE_DELETE_CONTAINER_FAILED: Self

Source

pub const STATE_READ_SETTING_FAILED: Self

Source

pub const STATE_WRITE_SETTING_FAILED: Self

Source

pub const STATE_DELETE_SETTING_FAILED: Self

Source

pub const STATE_QUERY_SETTING_FAILED: Self

Source

pub const STATE_READ_COMPOSITE_SETTING_FAILED: Self

Source

pub const STATE_WRITE_COMPOSITE_SETTING_FAILED: Self

Source

pub const STATE_ENUMERATE_CONTAINER_FAILED: Self

Source

pub const STATE_ENUMERATE_SETTINGS_FAILED: Self

Source

pub const STATE_COMPOSITE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED: Self

Source

pub const STATE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED: Self

Source

pub const STATE_SETTING_NAME_SIZE_LIMIT_EXCEEDED: Self

Source

pub const STATE_CONTAINER_NAME_SIZE_LIMIT_EXCEEDED: Self

Source

pub const API_UNAVAILABLE: Self

Source§

impl ERROR

Source

pub const fn to_hresult(self) -> HRESULT

Available on crate feature ole only.

Trait Implementations§

Source§

impl AsRef<u32> for ERROR

Source§

fn as_ref(&self) -> &u32

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl Binary for ERROR

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Clone for ERROR

Source§

fn clone(&self) -> ERROR

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ERROR

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for ERROR

Source§

fn default() -> ERROR

Returns the “default value” for a type. Read more
Source§

impl Display for ERROR

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Error for ERROR

Source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl From<ERROR> for u32

Source§

fn from(v: ERROR) -> Self

Converts to this type from the input type.
Source§

impl Hash for ERROR

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl LowerHex for ERROR

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Octal for ERROR

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Ord for ERROR

Source§

fn cmp(&self, other: &Self) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for ERROR

Source§

fn eq(&self, other: &ERROR) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for ERROR

Source§

fn partial_cmp(&self, other: &Self) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl SystemError for ERROR

Source§

fn FormatMessage(self) -> String

Returns the textual description of the system error, by calling FormatMessage. function.
Source§

impl UpperHex for ERROR

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for ERROR

Source§

impl Eq for ERROR

Source§

impl StructuralPartialEq for ERROR

Auto Trait Implementations§

§

impl Freeze for ERROR

§

impl RefUnwindSafe for ERROR

§

impl Send for ERROR

§

impl Sync for ERROR

§

impl Unpin for ERROR

§

impl UnwindSafe for ERROR

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.