pub struct MulticastGroupSet<A: IpAddress, T> { /* private fields */ }
Expand description
A set of reference-counted multicast groups and associated data.
MulticastGroupSet
is a set of multicast groups, each with associated data
T
. Each group is reference-counted, only being removed once its reference
count reaches zero.
Trait Implementations§
Source§impl<A: IpAddress, T> Default for MulticastGroupSet<A, T>
impl<A: IpAddress, T> Default for MulticastGroupSet<A, T>
Source§fn default() -> MulticastGroupSet<A, T>
fn default() -> MulticastGroupSet<A, T>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<A, T> Freeze for MulticastGroupSet<A, T>
impl<A, T> RefUnwindSafe for MulticastGroupSet<A, T>where
A: RefUnwindSafe,
T: RefUnwindSafe,
impl<A, T> Send for MulticastGroupSet<A, T>where
T: Send,
impl<A, T> Sync for MulticastGroupSet<A, T>where
T: Sync,
impl<A, T> Unpin for MulticastGroupSet<A, T>
impl<A, T> UnwindSafe for MulticastGroupSet<A, T>where
A: UnwindSafe,
T: 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<O, BC> BuildableCoreContext<BC> for Owhere
O: Default,
impl<O, BC> BuildableCoreContext<BC> for Owhere
O: Default,
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