#[repr(u32)]pub enum UsbSpeed {
Undefined = 0,
Full = 1,
Low = 2,
High = 3,
Super = 4,
EnhancedSuper = 5,
}Variants§
Implementations§
Source§impl UsbSpeed
impl UsbSpeed
pub fn from_primitive(prim: u32) -> Option<Self>
pub const fn into_primitive(self) -> u32
Trait Implementations§
impl Copy for UsbSpeed
Source§impl<D: ResourceDialect> Decode<UsbSpeed, D> for UsbSpeed
impl<D: ResourceDialect> Decode<UsbSpeed, D> for UsbSpeed
impl Eq for UsbSpeed
Source§impl Ord for UsbSpeed
impl Ord for UsbSpeed
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for UsbSpeed
impl PartialOrd for UsbSpeed
impl StructuralPartialEq for UsbSpeed
Source§impl TypeMarker for UsbSpeed
impl TypeMarker for UsbSpeed
Source§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
Source§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of
inline_align.Source§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned to a single memcpy. Read moreSource§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned to a single memcpy.Auto Trait Implementations§
impl Freeze for UsbSpeed
impl RefUnwindSafe for UsbSpeed
impl Send for UsbSpeed
impl Sync for UsbSpeed
impl Unpin for UsbSpeed
impl UnsafeUnpin for UsbSpeed
impl UnwindSafe for UsbSpeed
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