Embassy
embassy-net-driver-channel

Crates

git

Versions

default

Flavors

Struct embassy_net_driver_channel::Runner

source ·
pub struct Runner<'d, const MTU: usize> { /* private fields */ }
Expand description

Channel runner.

Holds the shared state and the lower end of channels for inbound and outbound packets.

Implementations§

source§

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

source

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

Split the runner into separate runners for controlling state, rx and tx.

source

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

Split the runner into separate runners for controlling state, rx and tx borrowing the underlying state.

source

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

Create a state runner sharing the state channel.

Set the link state.

source

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

Set the hardware address.

source

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

Wait until there is space for more inbound packets and return a slice they can be copied into.

source

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

Check if there is space for more inbound packets right now.

source

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

Polling the inbound channel if there is space for packets.

source

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

Mark packet of len bytes as pushed to the inbound channel.

source

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

Wait until there is space for more outbound packets and return a slice they can be copied into.

source

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

Check if there is space for more outbound packets right now.

source

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

Polling the outbound channel if there is space for packets.

source

pub fn tx_done(&mut self)

Mark outbound packet as copied.

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

§

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.