#[repr(u8)]pub enum DataDirection {
    Input = 1,
    Output = 2,
}Expand description
Indicates direction of data in a stream. Note that these values do not correspond to constants from the Bluetooth Core specification.
Variants§
Implementations§
Source§impl DataDirection
 
impl DataDirection
pub fn from_primitive(prim: u8) -> Option<DataDirection>
pub const fn into_primitive(self) -> u8
Trait Implementations§
Source§impl Clone for DataDirection
 
impl Clone for DataDirection
Source§fn clone(&self) -> DataDirection
 
fn clone(&self) -> DataDirection
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 DataDirection
 
impl Debug for DataDirection
Source§impl<D> Decode<DataDirection, D> for DataDirectionwhere
    D: ResourceDialect,
 
impl<D> Decode<DataDirection, D> for DataDirectionwhere
    D: ResourceDialect,
Source§fn new_empty() -> DataDirection
 
fn new_empty() -> DataDirection
Creates a valid instance of 
Self. The specific value does not matter,
since it will be overwritten by decode.Source§impl<D> Encode<DataDirection, D> for DataDirectionwhere
    D: ResourceDialect,
 
impl<D> Encode<DataDirection, D> for DataDirectionwhere
    D: ResourceDialect,
Source§impl Hash for DataDirection
 
impl Hash for DataDirection
Source§impl Ord for DataDirection
 
impl Ord for DataDirection
Source§fn cmp(&self, other: &DataDirection) -> Ordering
 
fn cmp(&self, other: &DataDirection) -> Ordering
1.21.0 · 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 PartialEq for DataDirection
 
impl PartialEq for DataDirection
Source§impl PartialOrd for DataDirection
 
impl PartialOrd for DataDirection
Source§impl TypeMarker for DataDirection
 
impl TypeMarker for DataDirection
Source§type Owned = DataDirection
 
type Owned = DataDirection
The owned Rust type which this FIDL type decodes into.
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 DataDirection
 
impl ValueTypeMarker for DataDirection
Source§type Borrowed<'a> = DataDirection
 
type Borrowed<'a> = DataDirection
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: &<DataDirection as TypeMarker>::Owned,
) -> <DataDirection as ValueTypeMarker>::Borrowed<'_>
 
fn borrow( value: &<DataDirection as TypeMarker>::Owned, ) -> <DataDirection as ValueTypeMarker>::Borrowed<'_>
Cheaply converts from 
&Self::Owned to Self::Borrowed.impl Copy for DataDirection
impl Eq for DataDirection
impl StructuralPartialEq for DataDirection
Auto Trait Implementations§
impl Freeze for DataDirection
impl RefUnwindSafe for DataDirection
impl Send for DataDirection
impl Sync for DataDirection
impl Unpin for DataDirection
impl UnwindSafe for DataDirection
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