pub enum ControlMessageType {
Show 25 variants
GoodCRC = 1,
GotoMin = 2,
Accept = 3,
Reject = 4,
Ping = 5,
PsRdy = 6,
GetSourceCap = 7,
GetSinkCap = 8,
DrSwap = 9,
PrSwap = 10,
VconnSwap = 11,
Wait = 12,
SoftReset = 13,
DataReset = 14,
DataResetComplete = 15,
NotSupported = 16,
GetSourceCapExtended = 17,
GetStatus = 18,
FrSwap = 19,
GetPpsStatus = 20,
GetCountryCodes = 21,
GetSinkCapExtended = 22,
GetSourceInfo = 23,
GetRevision = 24,
Reserved = 25,
}Variants§
GoodCRC = 1
GotoMin = 2
Accept = 3
Reject = 4
Ping = 5
PsRdy = 6
GetSourceCap = 7
GetSinkCap = 8
DrSwap = 9
PrSwap = 10
VconnSwap = 11
Wait = 12
SoftReset = 13
DataReset = 14
DataResetComplete = 15
NotSupported = 16
GetSourceCapExtended = 17
GetStatus = 18
FrSwap = 19
GetPpsStatus = 20
GetCountryCodes = 21
GetSinkCapExtended = 22
GetSourceInfo = 23
GetRevision = 24
Reserved = 25
Trait Implementations§
Source§impl Clone for ControlMessageType
impl Clone for ControlMessageType
Source§fn clone(&self) -> ControlMessageType
fn clone(&self) -> ControlMessageType
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 From<u8> for ControlMessageType
impl From<u8> for ControlMessageType
Source§impl PartialEq for ControlMessageType
impl PartialEq for ControlMessageType
impl Copy for ControlMessageType
impl Eq for ControlMessageType
impl StructuralPartialEq for ControlMessageType
Auto Trait Implementations§
impl Freeze for ControlMessageType
impl RefUnwindSafe for ControlMessageType
impl Send for ControlMessageType
impl Sync for ControlMessageType
impl Unpin for ControlMessageType
impl UnwindSafe for ControlMessageType
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, U> UnsafeFrom<U> for Twhere
T: From<U>,
impl<T, U> UnsafeFrom<U> for Twhere
T: From<U>,
Source§unsafe fn unsafe_from(other: U) -> T
unsafe fn unsafe_from(other: U) -> T
Calls T::from(other).
That is, this conversion is whatever the implementation of From<U> for T chooses to
do.
Source§impl<T, U> UnsafeInto<U> for Twhere
U: UnsafeFrom<T>,
impl<T, U> UnsafeInto<U> for Twhere
U: UnsafeFrom<T>,
Source§unsafe fn unsafe_into(self) -> U
unsafe fn unsafe_into(self) -> U
Calls U::unsafe_from(self).
That is, this conversion is whatever the implementation of UnsafeFrom<T> for U
chooses to do.