Skip to main content

IsoTpAsyncNodeBuilderWithRx

Struct IsoTpAsyncNodeBuilderWithRx 

Source
pub struct IsoTpAsyncNodeBuilderWithRx<'a, Tx, Rx, C> { /* private fields */ }
Expand description

Builder state after RX storage has been provided.

Implementations§

Source§

impl<'a, Tx, Rx, C> IsoTpAsyncNodeBuilderWithRx<'a, Tx, Rx, C>
where Tx: AsyncTxFrameIo, Rx: AsyncRxFrameIo<Frame = <Tx as AsyncTxFrameIo>::Frame, Error = <Tx as AsyncTxFrameIo>::Error>, <Tx as AsyncTxFrameIo>::Frame: Frame, C: Clock,

Source

pub fn build( self, ) -> Result<IsoTpAsyncNode<'a, Tx, Rx, <Tx as AsyncTxFrameIo>::Frame, C>, IsoTpError<()>>

Validate configuration and build an IsoTpAsyncNode.

Auto Trait Implementations§

§

impl<'a, Tx, Rx, C> Freeze for IsoTpAsyncNodeBuilderWithRx<'a, Tx, Rx, C>
where Tx: Freeze, Rx: Freeze, C: Freeze,

§

impl<'a, Tx, Rx, C> RefUnwindSafe for IsoTpAsyncNodeBuilderWithRx<'a, Tx, Rx, C>

§

impl<'a, Tx, Rx, C> Send for IsoTpAsyncNodeBuilderWithRx<'a, Tx, Rx, C>
where Tx: Send, Rx: Send, C: Send,

§

impl<'a, Tx, Rx, C> Sync for IsoTpAsyncNodeBuilderWithRx<'a, Tx, Rx, C>
where Tx: Sync, Rx: Sync, C: Sync,

§

impl<'a, Tx, Rx, C> Unpin for IsoTpAsyncNodeBuilderWithRx<'a, Tx, Rx, C>
where Tx: Unpin, Rx: Unpin, C: Unpin,

§

impl<'a, Tx, Rx, C> UnsafeUnpin for IsoTpAsyncNodeBuilderWithRx<'a, Tx, Rx, C>
where Tx: UnsafeUnpin, Rx: UnsafeUnpin, C: UnsafeUnpin,

§

impl<'a, Tx, Rx, C> !UnwindSafe for IsoTpAsyncNodeBuilderWithRx<'a, Tx, Rx, C>

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.