embassy-net-driver-channel

Crates

0.2.0

Versions

default

Flavors

Struct Runner

Source
pub struct Runner<'d, const MTU: usize> { /* private fields */ }

Implementations§

Source§

impl<'d, const MTU: usize> Runner<'d, MTU>

Source

pub fn split(self) -> (StateRunner<'d>, RxRunner<'d, MTU>, TxRunner<'d, MTU>)

Source

pub fn borrow_split( &mut self, ) -> (StateRunner<'_>, RxRunner<'_, MTU>, TxRunner<'_, MTU>)

Source

pub fn state_runner(&self) -> StateRunner<'d>

Source

pub fn set_hardware_address(&mut self, address: HardwareAddress)

Source

pub async fn rx_buf(&mut self) -> &mut [u8]

Source

pub fn try_rx_buf(&mut self) -> Option<&mut [u8]>

Source

pub fn poll_rx_buf(&mut self, cx: &mut Context<'_>) -> Poll<&mut [u8]>

Source

pub fn rx_done(&mut self, len: usize)

Source

pub async fn tx_buf(&mut self) -> &mut [u8]

Source

pub fn try_tx_buf(&mut self) -> Option<&mut [u8]>

Source

pub fn poll_tx_buf(&mut self, cx: &mut Context<'_>) -> Poll<&mut [u8]>

Source

pub fn tx_done(&mut self)

Auto Trait Implementations§

§

impl<'d, const MTU: usize> Freeze for Runner<'d, MTU>

§

impl<'d, const MTU: usize> !RefUnwindSafe for Runner<'d, MTU>

§

impl<'d, const MTU: usize> !Send for Runner<'d, MTU>

§

impl<'d, const MTU: usize> !Sync for Runner<'d, MTU>

§

impl<'d, const MTU: usize> Unpin for Runner<'d, MTU>

§

impl<'d, const MTU: usize> !UnwindSafe for Runner<'d, MTU>

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.