pub struct TxEightBits<'d, P0, P1, P2, P3, P4, P5, P6, P7> { /* private fields */ }
Expand description

Data pin configuration for 8 bit output mode

Implementations§

source§

impl<'d, P0, P1, P2, P3, P4, P5, P6, P7> TxEightBits<'d, P0, P1, P2, P3, P4, P5, P6, P7>
where P0: OutputPin, P1: OutputPin, P2: OutputPin, P3: OutputPin, P4: OutputPin, P5: OutputPin, P6: OutputPin, P7: OutputPin,

source

pub fn new( pin_p0: impl Peripheral<P = P0> + 'd, pin_p1: impl Peripheral<P = P1> + 'd, pin_p2: impl Peripheral<P = P2> + 'd, pin_p3: impl Peripheral<P = P3> + 'd, pin_p4: impl Peripheral<P = P4> + 'd, pin_p5: impl Peripheral<P = P5> + 'd, pin_p6: impl Peripheral<P = P6> + 'd, pin_p7: impl Peripheral<P = P7> + 'd ) -> TxEightBits<'d, P0, P1, P2, P3, P4, P5, P6, P7>

Auto Trait Implementations§

§

impl<'d, P0, P1, P2, P3, P4, P5, P6, P7> RefUnwindSafe for TxEightBits<'d, P0, P1, P2, P3, P4, P5, P6, P7>

§

impl<'d, P0, P1, P2, P3, P4, P5, P6, P7> Send for TxEightBits<'d, P0, P1, P2, P3, P4, P5, P6, P7>
where P0: Send, P1: Send, P2: Send, P3: Send, P4: Send, P5: Send, P6: Send, P7: Send,

§

impl<'d, P0, P1, P2, P3, P4, P5, P6, P7> Sync for TxEightBits<'d, P0, P1, P2, P3, P4, P5, P6, P7>
where P0: Sync, P1: Sync, P2: Sync, P3: Sync, P4: Sync, P5: Sync, P6: Sync, P7: Sync,

§

impl<'d, P0, P1, P2, P3, P4, P5, P6, P7> Unpin for TxEightBits<'d, P0, P1, P2, P3, P4, P5, P6, P7>
where P0: Unpin, P1: Unpin, P2: Unpin, P3: Unpin, P4: Unpin, P5: Unpin, P6: Unpin, P7: Unpin,

§

impl<'d, P0, P1, P2, P3, P4, P5, P6, P7> !UnwindSafe for TxEightBits<'d, P0, P1, P2, P3, P4, P5, P6, P7>

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>,

§

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>,

§

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.