Embassy
embassy-net-driver-channel

Crates

git

Versions

default

Flavors

Struct embassy_net_driver_channel::TxRunner

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

TX runner.

Holds the lower end of the channel for passing outbound packets down the stack.

Implementations§

source§

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

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 TxRunner<'d, MTU>

§

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

§

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

§

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

§

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

§

impl<'d, const MTU: usize> !UnwindSafe for TxRunner<'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.