pub enum DadEvent<DeviceId> {
AddressAssigned {
device: DeviceId,
addr: UnicastAddr<Ipv6Addr>,
},
}
Expand description
Events generated by duplicate address detection.
Variants§
AddressAssigned
Duplicate address detection completed and the address is assigned.
Fields
§
device: DeviceId
Device the address belongs to.
§
addr: UnicastAddr<Ipv6Addr>
The address that moved to the assigned state.
Trait Implementations§
impl<DeviceId: Eq> Eq for DadEvent<DeviceId>
impl<DeviceId> StructuralPartialEq for DadEvent<DeviceId>
Auto Trait Implementations§
impl<DeviceId> Freeze for DadEvent<DeviceId>where
DeviceId: Freeze,
impl<DeviceId> RefUnwindSafe for DadEvent<DeviceId>where
DeviceId: RefUnwindSafe,
impl<DeviceId> Send for DadEvent<DeviceId>where
DeviceId: Send,
impl<DeviceId> Sync for DadEvent<DeviceId>where
DeviceId: Sync,
impl<DeviceId> Unpin for DadEvent<DeviceId>where
DeviceId: Unpin,
impl<DeviceId> UnwindSafe for DadEvent<DeviceId>where
DeviceId: UnwindSafe,
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<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