pub enum ParseSessionResponseError {
NotEnoughData,
HaveErrorCode(Result<OpenSessionResponseErrorStatusCode, u8>),
ZeroRemoteConsoleSessionId,
ZeroManagedSystemSessionId,
InvalidPrivilegeLevel(u8),
InvalidAlgorithmPayload,
AuthPayloadWasNonAuthAlgorithm,
IntegrityPayloadWasNonIntegrityAlgorithm,
ConfidentialityPayloadWasNonConfidentialityAlgorithm,
AlgorithmPayloadError(AlgorithmPayloadError),
}Variants§
NotEnoughData
HaveErrorCode(Result<OpenSessionResponseErrorStatusCode, u8>)
ZeroRemoteConsoleSessionId
ZeroManagedSystemSessionId
InvalidPrivilegeLevel(u8)
InvalidAlgorithmPayload
AuthPayloadWasNonAuthAlgorithm
IntegrityPayloadWasNonIntegrityAlgorithm
ConfidentialityPayloadWasNonConfidentialityAlgorithm
AlgorithmPayloadError(AlgorithmPayloadError)
Trait Implementations§
Source§impl Clone for ParseSessionResponseError
impl Clone for ParseSessionResponseError
Source§fn clone(&self) -> ParseSessionResponseError
fn clone(&self) -> ParseSessionResponseError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ParseSessionResponseError
impl Debug for ParseSessionResponseError
Source§impl From<ParseSessionResponseError> for ActivationError
impl From<ParseSessionResponseError> for ActivationError
Source§fn from(value: ParseSessionResponseError) -> Self
fn from(value: ParseSessionResponseError) -> Self
Converts to this type from the input type.
impl Copy for ParseSessionResponseError
impl StructuralPartialEq for ParseSessionResponseError
Auto Trait Implementations§
impl Freeze for ParseSessionResponseError
impl RefUnwindSafe for ParseSessionResponseError
impl Send for ParseSessionResponseError
impl Sync for ParseSessionResponseError
impl Unpin for ParseSessionResponseError
impl UnwindSafe for ParseSessionResponseError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more