embassy-net-driver-channel

Crates

git

Versions

default

Flavors

Skip to main content

Device

Struct Device 

Source
pub struct Device<'d> { /* private fields */ }
Expand description

Channel device.

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

Trait Implementations§

Source§

impl Driver for Device<'_>

Source§

fn capabilities(&self) -> Capabilities

Get a description of the device’s capabilities.
Source§

fn hardware_address(&self) -> HardwareAddress

Get the device’s hardware address. Read more
Get the link state. Read more
Source§

fn register_waker(&mut self, waker: &Waker) -> Result<(), NotSupported>

Register a waker. Read more
Source§

fn receive(&mut self) -> Option<PacketBuf>

Poll for a received frame. Read more
Source§

fn can_transmit(&mut self) -> bool

Whether the device can transmit one frame right now. Read more
Source§

fn transmit(&mut self, buf: PacketBuf) -> Result<(), PacketBuf>

Queue a frame for transmission, transferring ownership of the buffer to the driver. Read more
Source§

fn set_multicast_filter(&mut self, addrs: &[[u8; 6]])

Set the device’s multicast hardware address filter. Read more

Auto Trait Implementations§

§

impl<'d> !RefUnwindSafe for Device<'d>

§

impl<'d> !Send for Device<'d>

§

impl<'d> !Sync for Device<'d>

§

impl<'d> !UnwindSafe for Device<'d>

§

impl<'d> Freeze for Device<'d>

§

impl<'d> Unpin for Device<'d>

§

impl<'d> UnsafeUnpin for Device<'d>

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 = !

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.