pub enum VendorId {
Google,
// some variants omitted
}
Expand description
The VendorId represents the vendor that created this Input device. If the Input device is a HID device, the VendorId maps directly to the HID VendorId. If the Input device is not a HID device, then the VendorId will be greater than 0xFFFF, which is the max HID VendorId.
Variants§
Below are the HID VendorIds, range 0x0000 - 0xFFFF.
Implementations§
Trait Implementations§
Source§impl<D> Decode<VendorId, D> for VendorIdwhere
D: ResourceDialect,
impl<D> Decode<VendorId, D> for VendorIdwhere
D: ResourceDialect,
Source§impl Ord for VendorId
impl Ord for VendorId
Source§impl PartialOrd for VendorId
impl PartialOrd for VendorId
Source§impl TypeMarker for VendorId
impl TypeMarker for VendorId
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.Source§impl ValueTypeMarker for VendorId
impl ValueTypeMarker for VendorId
Source§type Borrowed<'a> = VendorId
type Borrowed<'a> = VendorId
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read moreSource§fn borrow(
value: &<VendorId as TypeMarker>::Owned,
) -> <VendorId as ValueTypeMarker>::Borrowed<'_>
fn borrow( value: &<VendorId as TypeMarker>::Owned, ) -> <VendorId as ValueTypeMarker>::Borrowed<'_>
Cheaply converts from
&Self::Owned
to Self::Borrowed
.impl Copy for VendorId
impl Eq for VendorId
impl StructuralPartialEq for VendorId
Auto Trait Implementations§
impl Freeze for VendorId
impl RefUnwindSafe for VendorId
impl Send for VendorId
impl Sync for VendorId
impl Unpin for VendorId
impl UnwindSafe for VendorId
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