#[repr(u32)]pub enum StateTransition {
StTotalAbort = 1,
StNoTransition = 2,
StResetPhaseToStart = 3,
StResendLastMessage = 4,
}
Expand description
All valid state transition available for license automata https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-rdpbcgr/f18b6c9f-f3d8-4a0e-8398-f9b153233dca
Variants§
Trait Implementations§
Source§impl PartialEq for StateTransition
impl PartialEq for StateTransition
Source§impl TryFrom<u32> for StateTransition
impl TryFrom<u32> for StateTransition
Source§type Error = TryFromPrimitiveError<StateTransition>
type Error = TryFromPrimitiveError<StateTransition>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for StateTransition
impl TryFromPrimitive for StateTransition
impl Eq for StateTransition
impl StructuralPartialEq for StateTransition
Auto Trait Implementations§
impl Freeze for StateTransition
impl RefUnwindSafe for StateTransition
impl Send for StateTransition
impl Sync for StateTransition
impl Unpin for StateTransition
impl UnwindSafe for StateTransition
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
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.