DataPins16

Struct DataPins16 

Source
pub struct DataPins16 {
Show 16 fields pub d0: D0, pub d1: D1, pub d2: D2, pub d3: D3, pub d4: D4, pub d5: D5, pub d6: D6, pub d7: D7, pub d8: D8, pub d9: D9, pub d10: D10, pub d11: D11, pub d12: D12, pub d13: D13, pub d14: D14, pub d15: D15,
}

Fields§

§d0: D0§d1: D1§d2: D2§d3: D3§d4: D4§d5: D5§d6: D6§d7: D7§d8: D8§d9: D9§d10: D10§d11: D11§d12: D12§d13: D13§d14: D14§d15: D15

Implementations§

Source§

impl DataPins16

Source

pub fn new( d0: impl Into<D0>, d1: impl Into<D1>, d2: impl Into<D2>, d3: impl Into<D3>, d4: impl Into<D4>, d5: impl Into<D5>, d6: impl Into<D6>, d7: impl Into<D7>, d8: impl Into<D8>, d9: impl Into<D9>, d10: impl Into<D10>, d11: impl Into<D11>, d12: impl Into<D12>, d13: impl Into<D13>, d14: impl Into<D14>, d15: impl Into<D15>, ) -> Self

Trait Implementations§

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.