Parallel

Struct Parallel 

Source
pub struct Parallel<D1, D2, D3, D4, RS, EN, EN2>
where D1: OutputPin, D2: OutputPin, D3: OutputPin, D4: OutputPin, RS: OutputPin, EN: OutputPin, EN2: OutputPin,
{ /* private fields */ }

Implementations§

Source§

impl<D1, D2, D3, D4, RS, EN, EN2> Parallel<D1, D2, D3, D4, RS, EN, EN2>
where D1: OutputPin, D2: OutputPin, D3: OutputPin, D4: OutputPin, RS: OutputPin, EN: OutputPin, EN2: OutputPin,

Source

pub fn new( d1: D1, d2: D2, d3: D3, d4: D4, rs: RS, en: EN, en2: EN2, ) -> Parallel<D1, D2, D3, D4, RS, EN, EN2>

Trait Implementations§

Source§

impl<D1, D2, D3, D4, RS, EN, EN2> Interface for Parallel<D1, D2, D3, D4, RS, EN, EN2>
where D1: OutputPin, D2: OutputPin, D3: OutputPin, D4: OutputPin, RS: OutputPin, EN: OutputPin, EN2: OutputPin,

Source§

fn send(&mut self, config: u8, data: u8)

Auto Trait Implementations§

§

impl<D1, D2, D3, D4, RS, EN, EN2> Freeze for Parallel<D1, D2, D3, D4, RS, EN, EN2>
where D1: Freeze, D2: Freeze, D3: Freeze, D4: Freeze, RS: Freeze, EN: Freeze, EN2: Freeze,

§

impl<D1, D2, D3, D4, RS, EN, EN2> RefUnwindSafe for Parallel<D1, D2, D3, D4, RS, EN, EN2>

§

impl<D1, D2, D3, D4, RS, EN, EN2> Send for Parallel<D1, D2, D3, D4, RS, EN, EN2>
where D1: Send, D2: Send, D3: Send, D4: Send, RS: Send, EN: Send, EN2: Send,

§

impl<D1, D2, D3, D4, RS, EN, EN2> Sync for Parallel<D1, D2, D3, D4, RS, EN, EN2>
where D1: Sync, D2: Sync, D3: Sync, D4: Sync, RS: Sync, EN: Sync, EN2: Sync,

§

impl<D1, D2, D3, D4, RS, EN, EN2> Unpin for Parallel<D1, D2, D3, D4, RS, EN, EN2>
where D1: Unpin, D2: Unpin, D3: Unpin, D4: Unpin, RS: Unpin, EN: Unpin, EN2: Unpin,

§

impl<D1, D2, D3, D4, RS, EN, EN2> UnwindSafe for Parallel<D1, D2, D3, D4, RS, EN, EN2>
where D1: UnwindSafe, D2: UnwindSafe, D3: UnwindSafe, D4: UnwindSafe, RS: UnwindSafe, EN: UnwindSafe, EN2: UnwindSafe,

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.