[][src]Struct abin::spi::BinData

#[repr(C)]pub struct BinData(_, _, _);

This is just a placeholder for the payload of types. You only need this if you implement your own type.

If you use your own bin data, make sure:

  • The size must be exactly 3 words (3 * usize).
  • The struct must be word-aligned (usize-aligned).

Implementations

impl BinData[src]

pub const fn empty() -> Self[src]

Trait Implementations

impl Clone for BinData[src]

impl Copy for BinData[src]

Auto Trait Implementations

impl RefUnwindSafe for BinData

impl Send for BinData

impl Sync for BinData

impl Unpin for BinData

impl UnwindSafe for BinData

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.