Enum netstack3_device::WeakDeviceId
source · pub enum WeakDeviceId<BT: DeviceLayerTypes> {
Ethernet(EthernetWeakDeviceId<BT>),
Loopback(LoopbackWeakDeviceId<BT>),
PureIp(PureIpWeakDeviceId<BT>),
}
Expand description
A weak ID identifying a device.
This device ID makes no claim about the live-ness of the underlying device.
See DeviceId
for a device ID that acts as a witness to the live-ness of
a device.
Variants§
Ethernet(EthernetWeakDeviceId<BT>)
Loopback(LoopbackWeakDeviceId<BT>)
PureIp(PureIpWeakDeviceId<BT>)
Implementations§
source§impl<BT: DeviceLayerTypes> WeakDeviceId<BT>
impl<BT: DeviceLayerTypes> WeakDeviceId<BT>
sourcepub fn debug_references(&self) -> DynDebugReferences
pub fn debug_references(&self) -> DynDebugReferences
Creates a [DebugReferences
] instance for this device.
sourcepub fn bindings_id(&self) -> &BT::DeviceIdentifier
pub fn bindings_id(&self) -> &BT::DeviceIdentifier
Returns the bindings identifier associated with the device.
Trait Implementations§
source§impl<BT: DeviceLayerTypes> Clone for WeakDeviceId<BT>
impl<BT: DeviceLayerTypes> Clone for WeakDeviceId<BT>
source§impl<BT: DeviceLayerTypes> Debug for WeakDeviceId<BT>
impl<BT: DeviceLayerTypes> Debug for WeakDeviceId<BT>
source§impl<BT: DeviceLayerTypes> DeviceIdentifier for WeakDeviceId<BT>
impl<BT: DeviceLayerTypes> DeviceIdentifier for WeakDeviceId<BT>
source§fn is_loopback(&self) -> bool
fn is_loopback(&self) -> bool
Returns true if the device is a loopback device.
source§impl<BT: DeviceLayerTypes> Hash for WeakDeviceId<BT>
impl<BT: DeviceLayerTypes> Hash for WeakDeviceId<BT>
source§impl<BT: DeviceLayerTypes> PartialEq<DeviceId<BT>> for WeakDeviceId<BT>
impl<BT: DeviceLayerTypes> PartialEq<DeviceId<BT>> for WeakDeviceId<BT>
source§impl<BT: DeviceLayerTypes> PartialEq<WeakDeviceId<BT>> for DeviceId<BT>
impl<BT: DeviceLayerTypes> PartialEq<WeakDeviceId<BT>> for DeviceId<BT>
source§fn eq(&self, other: &WeakDeviceId<BT>) -> bool
fn eq(&self, other: &WeakDeviceId<BT>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<BT: DeviceLayerTypes> PartialEq for WeakDeviceId<BT>
impl<BT: DeviceLayerTypes> PartialEq for WeakDeviceId<BT>
source§impl<BT: DeviceLayerTypes> WeakDeviceIdentifier for WeakDeviceId<BT>
impl<BT: DeviceLayerTypes> WeakDeviceIdentifier for WeakDeviceId<BT>
impl<BT: DeviceLayerTypes> Eq for WeakDeviceId<BT>
Auto Trait Implementations§
impl<BT> Freeze for WeakDeviceId<BT>
impl<BT> RefUnwindSafe for WeakDeviceId<BT>where
<BT as DeviceLayerStateTypes>::DeviceIdentifier: RefUnwindSafe,
<BT as DeviceLayerStateTypes>::EthernetDeviceState: RefUnwindSafe,
<BT as DeviceLayerStateTypes>::LoopbackDeviceState: RefUnwindSafe,
<BT as DeviceLayerStateTypes>::PureIpDeviceState: RefUnwindSafe,
impl<BT> Send for WeakDeviceId<BT>
impl<BT> Sync for WeakDeviceId<BT>
impl<BT> Unpin for WeakDeviceId<BT>
impl<BT> UnwindSafe for WeakDeviceId<BT>where
<BT as DeviceLayerStateTypes>::DeviceIdentifier: RefUnwindSafe,
<BT as DeviceLayerStateTypes>::EthernetDeviceState: RefUnwindSafe,
<BT as DeviceLayerStateTypes>::LoopbackDeviceState: RefUnwindSafe,
<BT as DeviceLayerStateTypes>::PureIpDeviceState: RefUnwindSafe,
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<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