Enum netstack3_device::DeviceId
source · pub enum DeviceId<BT: DeviceLayerTypes> {
Ethernet(EthernetDeviceId<BT>),
Loopback(LoopbackDeviceId<BT>),
PureIp(PureIpDeviceId<BT>),
}
Expand description
A strong ID identifying a device.
Holders may safely assume that the underlying device is “alive” in the sense that the device is still recognized by the stack. That is, operations that use this device ID will never fail as a result of “unrecognized device”-like errors.
Variants§
Implementations§
source§impl<BT: DeviceLayerTypes> DeviceId<BT>
impl<BT: DeviceLayerTypes> DeviceId<BT>
sourcepub fn downgrade(&self) -> WeakDeviceId<BT>
pub fn downgrade(&self) -> WeakDeviceId<BT>
Downgrade to a WeakDeviceId
.
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 DeviceId<BT>
impl<BT: DeviceLayerTypes> Clone for DeviceId<BT>
source§impl<BT: DeviceLayerTypes> Debug for DeviceId<BT>
impl<BT: DeviceLayerTypes> Debug for DeviceId<BT>
source§impl<BT: DeviceLayerTypes> DeviceIdentifier for DeviceId<BT>
impl<BT: DeviceLayerTypes> DeviceIdentifier for DeviceId<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> DeviceWithName for DeviceId<BT>
impl<BT: DeviceLayerTypes> DeviceWithName for DeviceId<BT>
source§fn name_matches(&self, name: &str) -> bool
fn name_matches(&self, name: &str) -> bool
Returns whether the provided name matches the interface.
source§impl<BT: DeviceLayerTypes> From<BaseDeviceId<EthernetLinkDevice, BT>> for DeviceId<BT>
impl<BT: DeviceLayerTypes> From<BaseDeviceId<EthernetLinkDevice, BT>> for DeviceId<BT>
source§fn from(id: EthernetDeviceId<BT>) -> DeviceId<BT>
fn from(id: EthernetDeviceId<BT>) -> DeviceId<BT>
Converts to this type from the input type.
source§impl<BT: DeviceLayerTypes> From<BaseDeviceId<LoopbackDevice, BT>> for DeviceId<BT>
impl<BT: DeviceLayerTypes> From<BaseDeviceId<LoopbackDevice, BT>> for DeviceId<BT>
source§fn from(id: LoopbackDeviceId<BT>) -> DeviceId<BT>
fn from(id: LoopbackDeviceId<BT>) -> DeviceId<BT>
Converts to this type from the input type.
source§impl<BT: DeviceLayerTypes> From<BaseDeviceId<PureIpDevice, BT>> for DeviceId<BT>
impl<BT: DeviceLayerTypes> From<BaseDeviceId<PureIpDevice, BT>> for DeviceId<BT>
source§fn from(id: PureIpDeviceId<BT>) -> DeviceId<BT>
fn from(id: PureIpDeviceId<BT>) -> DeviceId<BT>
Converts to this type from the input type.
source§impl<BT: DeviceLayerTypes> Hash for DeviceId<BT>
impl<BT: DeviceLayerTypes> Hash for DeviceId<BT>
source§impl<BT: DeviceLayerTypes> InterfaceProperties<<BT as FilterBindingsTypes>::DeviceClass> for DeviceId<BT>
impl<BT: DeviceLayerTypes> InterfaceProperties<<BT as FilterBindingsTypes>::DeviceClass> for DeviceId<BT>
source§fn id_matches(&self, id: &NonZeroU64) -> bool
fn id_matches(&self, id: &NonZeroU64) -> bool
Returns whether the provided ID matches the interface.
source§fn device_class_matches(&self, device_class: &BT::DeviceClass) -> bool
fn device_class_matches(&self, device_class: &BT::DeviceClass) -> bool
Returns whether the provided device class matches the interface.
source§impl<BT: DeviceLayerTypes> Ord for DeviceId<BT>
impl<BT: DeviceLayerTypes> Ord for DeviceId<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 DeviceId<BT>
impl<BT: DeviceLayerTypes> PartialEq for DeviceId<BT>
source§impl<BT: DeviceLayerTypes> PartialOrd for DeviceId<BT>
impl<BT: DeviceLayerTypes> PartialOrd for DeviceId<BT>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl<BT: DeviceLayerTypes> StrongDeviceIdentifier for DeviceId<BT>
impl<BT: DeviceLayerTypes> StrongDeviceIdentifier for DeviceId<BT>
impl<BT: DeviceLayerTypes> Eq for DeviceId<BT>
Auto Trait Implementations§
impl<BT> Freeze for DeviceId<BT>
impl<BT> RefUnwindSafe for DeviceId<BT>where
<BT as DeviceLayerStateTypes>::EthernetDeviceState: RefUnwindSafe,
<BT as DeviceLayerStateTypes>::LoopbackDeviceState: RefUnwindSafe,
<BT as DeviceLayerStateTypes>::PureIpDeviceState: RefUnwindSafe,
<BT as DeviceLayerStateTypes>::DeviceIdentifier: RefUnwindSafe,
impl<BT> Send for DeviceId<BT>
impl<BT> Sync for DeviceId<BT>
impl<BT> Unpin for DeviceId<BT>
impl<BT> UnwindSafe for DeviceId<BT>where
<BT as DeviceLayerStateTypes>::EthernetDeviceState: RefUnwindSafe,
<BT as DeviceLayerStateTypes>::LoopbackDeviceState: RefUnwindSafe,
<BT as DeviceLayerStateTypes>::PureIpDeviceState: RefUnwindSafe,
<BT as DeviceLayerStateTypes>::DeviceIdentifier: 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