pub type BlackholeDeviceId<BT> = BaseDeviceId<BlackholeDevice, BT>;
Expand description
A strong device ID identifying a blackhole device.
This device ID is like DeviceId
but specifically for blackhole devices.
Aliased Type§
struct BlackholeDeviceId<BT> { /* private fields */ }
Implementations
Source§impl<T: DeviceStateSpec, BT: DeviceLayerTypes> BaseDeviceId<T, BT>
impl<T: DeviceStateSpec, BT: DeviceLayerTypes> BaseDeviceId<T, BT>
Sourcepub fn device_state(&self, tracker: &OriginTracker) -> &IpLinkDeviceState<T, BT>
pub fn device_state(&self, tracker: &OriginTracker) -> &IpLinkDeviceState<T, BT>
Returns a reference to the device state.
Requires an OriginTracker to ensure this is being access from the proper context and disallow usage in bindings.
Sourcepub fn external_state(&self) -> &T::External<BT>
pub fn external_state(&self) -> &T::External<BT>
Returns a reference to the external state for the device.
Sourcepub fn bindings_id(&self) -> &BT::DeviceIdentifier
pub fn bindings_id(&self) -> &BT::DeviceIdentifier
Returns the bindings identifier associated with the device.
Sourcepub fn downgrade(&self) -> BaseWeakDeviceId<T, BT>
pub fn downgrade(&self) -> BaseWeakDeviceId<T, BT>
Downgrades the ID to an EthernetWeakDeviceId
.
Trait Implementations
Source§impl<T: DeviceStateSpec, BT: DeviceLayerTypes> Clone for BaseDeviceId<T, BT>
impl<T: DeviceStateSpec, BT: DeviceLayerTypes> Clone for BaseDeviceId<T, BT>
Source§impl<T: DeviceStateSpec, BT: DeviceLayerTypes> Debug for BaseDeviceId<T, BT>
impl<T: DeviceStateSpec, BT: DeviceLayerTypes> Debug for BaseDeviceId<T, BT>
Source§impl<T: DeviceStateSpec, BT: DeviceLayerTypes> DeviceIdentifier for BaseDeviceId<T, BT>
impl<T: DeviceStateSpec, BT: DeviceLayerTypes> DeviceIdentifier for BaseDeviceId<T, BT>
Source§fn is_loopback(&self) -> bool
fn is_loopback(&self) -> bool
Returns true if the device is a loopback device.