pub enum EthernetLinkDevice {}
Expand description
An implementation of the LinkDevice
trait for Ethernet devices.
Trait Implementations§
source§impl Clone for EthernetLinkDevice
impl Clone for EthernetLinkDevice
source§fn clone(&self) -> EthernetLinkDevice
fn clone(&self) -> EthernetLinkDevice
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for EthernetLinkDevice
impl Debug for EthernetLinkDevice
source§impl DeviceStateSpec for EthernetLinkDevice
impl DeviceStateSpec for EthernetLinkDevice
§type Link<BT: DeviceLayerTypes> = EthernetDeviceState<BT>
type Link<BT: DeviceLayerTypes> = EthernetDeviceState<BT>
The link state.
§type External<BT: DeviceLayerTypes> = <BT as DeviceLayerStateTypes>::EthernetDeviceState
type External<BT: DeviceLayerTypes> = <BT as DeviceLayerStateTypes>::EthernetDeviceState
The external (bindings) state.
§type CreationProperties = EthernetCreationProperties
type CreationProperties = EthernetCreationProperties
Properties given to device creation.
§type Counters = EthernetDeviceCounters
type Counters = EthernetDeviceCounters
Device-specific counters.
§type TimerId<D: WeakDeviceIdentifier> = EthernetTimerId<D>
type TimerId<D: WeakDeviceIdentifier> = EthernetTimerId<D>
The timer identifier required by this device state.
source§fn new_link_state<CC: CoreTimerContext<Self::TimerId<CC::WeakDeviceId>, BC> + DeviceIdContext<Self>, BC: DeviceLayerTypes + TimerContext>(
bindings_ctx: &mut BC,
self_id: CC::WeakDeviceId,
_: Self::CreationProperties,
) -> Self::Link<BC>
fn new_link_state<CC: CoreTimerContext<Self::TimerId<CC::WeakDeviceId>, BC> + DeviceIdContext<Self>, BC: DeviceLayerTypes + TimerContext>( bindings_ctx: &mut BC, self_id: CC::WeakDeviceId, _: Self::CreationProperties, ) -> Self::Link<BC>
Creates a new link state from the given properties.
source§const IS_LOOPBACK: bool = false
const IS_LOOPBACK: bool = false
Marker for loopback devices.
source§const DEBUG_TYPE: &'static str = "Ethernet"
const DEBUG_TYPE: &'static str = "Ethernet"
Marker used to print debug information for device identifiers.
source§impl Hash for EthernetLinkDevice
impl Hash for EthernetLinkDevice
source§impl LinkDevice for EthernetLinkDevice
impl LinkDevice for EthernetLinkDevice
source§impl PartialEq for EthernetLinkDevice
impl PartialEq for EthernetLinkDevice
source§fn eq(&self, other: &EthernetLinkDevice) -> bool
fn eq(&self, other: &EthernetLinkDevice) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for EthernetLinkDevice
impl Device for EthernetLinkDevice
impl Eq for EthernetLinkDevice
impl StructuralPartialEq for EthernetLinkDevice
Auto Trait Implementations§
impl Freeze for EthernetLinkDevice
impl RefUnwindSafe for EthernetLinkDevice
impl Send for EthernetLinkDevice
impl Sync for EthernetLinkDevice
impl Unpin for EthernetLinkDevice
impl UnwindSafe for EthernetLinkDevice
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<CC, BC, Meta> RecvFrameContext<Meta, BC> for CCwhere
Meta: ReceivableFrameMeta<CC, BC>,
impl<CC, BC, Meta> RecvFrameContext<Meta, BC> for CCwhere
Meta: ReceivableFrameMeta<CC, BC>,
source§impl<CC, BC, Meta> SendFrameContext<BC, Meta> for CCwhere
Meta: SendableFrameMeta<CC, BC>,
impl<CC, BC, Meta> SendFrameContext<BC, Meta> for CCwhere
Meta: SendableFrameMeta<CC, BC>,
source§fn send_frame<S>(
&mut self,
bindings_ctx: &mut BC,
metadata: Meta,
frame: S,
) -> Result<(), ErrorAndSerializer<SendFrameErrorReason, S>>where
S: Serializer,
<S as Serializer>::Buffer: BufferMut,
fn send_frame<S>(
&mut self,
bindings_ctx: &mut BC,
metadata: Meta,
frame: S,
) -> Result<(), ErrorAndSerializer<SendFrameErrorReason, S>>where
S: Serializer,
<S as Serializer>::Buffer: BufferMut,
Send a frame. Read more
source§impl<Id, CC, BC> TimerHandler<BC, Id> for CCwhere
BC: TimerBindingsTypes,
Id: HandleableTimer<CC, BC>,
impl<Id, CC, BC> TimerHandler<BC, Id> for CCwhere
BC: TimerBindingsTypes,
Id: HandleableTimer<CC, BC>,
source§fn handle_timer(
&mut self,
bindings_ctx: &mut BC,
dispatch: Id,
timer: <BC as TimerBindingsTypes>::UniqueTimerId,
)
fn handle_timer( &mut self, bindings_ctx: &mut BC, dispatch: Id, timer: <BC as TimerBindingsTypes>::UniqueTimerId, )
Handle a timer firing. Read more