pub enum PureIpDevice {}
Expand description
A marker type identifying a pure IP device.
Trait Implementations§
Source§impl Clone for PureIpDevice
impl Clone for PureIpDevice
Source§fn clone(&self) -> PureIpDevice
fn clone(&self) -> PureIpDevice
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 DeviceStateSpec for PureIpDevice
impl DeviceStateSpec for PureIpDevice
Source§const IS_LOOPBACK: bool = false
const IS_LOOPBACK: bool = false
Marker for loopback devices.
Source§const DEBUG_TYPE: &'static str = "PureIP"
const DEBUG_TYPE: &'static str = "PureIP"
Marker used to print debug information for device identifiers.
Source§type State<BT: DeviceLayerTypes> = PureIpDeviceState<BT>
type State<BT: DeviceLayerTypes> = PureIpDeviceState<BT>
The device state.
Source§type External<BT: DeviceLayerTypes> = <BT as DeviceLayerStateTypes>::PureIpDeviceState
type External<BT: DeviceLayerTypes> = <BT as DeviceLayerStateTypes>::PureIpDeviceState
The external (bindings) state.
Source§type CreationProperties = PureIpDeviceCreationProperties
type CreationProperties = PureIpDeviceCreationProperties
Properties given to device creation.
Source§type Counters = PureIpDeviceCounters
type Counters = PureIpDeviceCounters
Device-specific counters.
Source§type TimerId<D: WeakDeviceIdentifier> = Infallible
type TimerId<D: WeakDeviceIdentifier> = Infallible
The timer identifier required by this device state.
Source§fn new_device_state<CC: CoreTimerContext<Self::TimerId<CC::WeakDeviceId>, BC> + DeviceIdContext<Self>, BC: DeviceLayerTypes + TimerContext>(
_bindings_ctx: &mut BC,
_self_id: CC::WeakDeviceId,
_: Self::CreationProperties,
) -> Self::State<BC>
fn new_device_state<CC: CoreTimerContext<Self::TimerId<CC::WeakDeviceId>, BC> + DeviceIdContext<Self>, BC: DeviceLayerTypes + TimerContext>( _bindings_ctx: &mut BC, _self_id: CC::WeakDeviceId, _: Self::CreationProperties, ) -> Self::State<BC>
Creates a new device state from the given properties.
impl Copy for PureIpDevice
impl Device for PureIpDevice
Auto Trait Implementations§
impl Freeze for PureIpDevice
impl RefUnwindSafe for PureIpDevice
impl Send for PureIpDevice
impl Sync for PureIpDevice
impl Unpin for PureIpDevice
impl UnwindSafe for PureIpDevice
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,
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<T> Pointable for T
impl<T> Pointable for T
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