pub struct IcmpSocketId<I: IpExt, D: WeakDeviceIdentifier, BT: IcmpEchoBindingsTypes>(/* private fields */);
Expand description
An ICMP socket.
Implementations§
Source§impl<I: IpExt, D: WeakDeviceIdentifier, BT: IcmpEchoBindingsTypes> IcmpSocketId<I, D, BT>
impl<I: IpExt, D: WeakDeviceIdentifier, BT: IcmpEchoBindingsTypes> IcmpSocketId<I, D, BT>
Sourcepub fn debug_references(&self) -> impl Debug
pub fn debug_references(&self) -> impl Debug
Returns a means to debug outstanding references to this socket.
Sourcepub fn external_data(&self) -> &BT::ExternalData<I>
pub fn external_data(&self) -> &BT::ExternalData<I>
Returns external data associated with this socket.
Trait Implementations§
Source§impl<I: IpExt, D: WeakDeviceIdentifier, BT: IcmpEchoBindingsTypes> Borrow<Strong<ReferenceState<I, D, Icmp<BT>>>> for IcmpSocketId<I, D, BT>
impl<I: IpExt, D: WeakDeviceIdentifier, BT: IcmpEchoBindingsTypes> Borrow<Strong<ReferenceState<I, D, Icmp<BT>>>> for IcmpSocketId<I, D, BT>
Source§impl<I: IpExt, D: WeakDeviceIdentifier, BT: IcmpEchoBindingsTypes> Clone for IcmpSocketId<I, D, BT>
impl<I: IpExt, D: WeakDeviceIdentifier, BT: IcmpEchoBindingsTypes> Clone for IcmpSocketId<I, D, BT>
Source§impl<I: IpExt, D: WeakDeviceIdentifier, BT: IcmpEchoBindingsTypes> Debug for IcmpSocketId<I, D, BT>
impl<I: IpExt, D: WeakDeviceIdentifier, BT: IcmpEchoBindingsTypes> Debug for IcmpSocketId<I, D, BT>
Source§impl<I: IpExt, D: WeakDeviceIdentifier, BT: IcmpEchoBindingsTypes> DelegatedOrderedLockAccess<SocketState<I, D, Icmp<BT>>> for IcmpSocketId<I, D, BT>
impl<I: IpExt, D: WeakDeviceIdentifier, BT: IcmpEchoBindingsTypes> DelegatedOrderedLockAccess<SocketState<I, D, Icmp<BT>>> for IcmpSocketId<I, D, BT>
Source§type Inner = ReferenceState<I, D, Icmp<BT>>
type Inner = ReferenceState<I, D, Icmp<BT>>
The inner type acting as a proxy for ordered access to T.
Source§fn delegate_ordered_lock_access(&self) -> &Self::Inner
fn delegate_ordered_lock_access(&self) -> &Self::Inner
Returns the inner type.
Source§impl<I: IpExt, D: WeakDeviceIdentifier, BT: IcmpEchoBindingsTypes> From<Strong<ReferenceState<I, D, Icmp<BT>>>> for IcmpSocketId<I, D, BT>
impl<I: IpExt, D: WeakDeviceIdentifier, BT: IcmpEchoBindingsTypes> From<Strong<ReferenceState<I, D, Icmp<BT>>>> for IcmpSocketId<I, D, BT>
Source§impl<I: IpExt, D: WeakDeviceIdentifier, BT: IcmpEchoBindingsTypes, IpType> GenericOverIp<IpType> for IcmpSocketId<I, D, BT>where
IpType: IpExt + Ip,
impl<I: IpExt, D: WeakDeviceIdentifier, BT: IcmpEchoBindingsTypes, IpType> GenericOverIp<IpType> for IcmpSocketId<I, D, BT>where
IpType: IpExt + Ip,
Source§type Type = IcmpSocketId<IpType, D, BT>
type Type = IcmpSocketId<IpType, D, BT>
The type of
Self
when its IP-generic parameter is replaced with the
type NewIp
.Source§impl<I: IpExt, D: WeakDeviceIdentifier, BT: IcmpEchoBindingsTypes> Hash for IcmpSocketId<I, D, BT>
impl<I: IpExt, D: WeakDeviceIdentifier, BT: IcmpEchoBindingsTypes> Hash for IcmpSocketId<I, D, BT>
Source§impl<I: IpExt, D: WeakDeviceIdentifier, BT: IcmpEchoBindingsTypes> PartialEq for IcmpSocketId<I, D, BT>
impl<I: IpExt, D: WeakDeviceIdentifier, BT: IcmpEchoBindingsTypes> PartialEq for IcmpSocketId<I, D, BT>
Source§impl<I: IpExt, D: WeakDeviceIdentifier, BT: IcmpEchoBindingsTypes> SocketMapAddrStateSpec for IcmpSocketId<I, D, BT>
impl<I: IpExt, D: WeakDeviceIdentifier, BT: IcmpEchoBindingsTypes> SocketMapAddrStateSpec for IcmpSocketId<I, D, BT>
Source§type Id = IcmpSocketId<I, D, BT>
type Id = IcmpSocketId<I, D, BT>
The type of ID that can be present at the address.
Source§type SharingState = ()
type SharingState = ()
The sharing state for the address. Read more
Source§type Inserter<'a> = Infallible
where
Self: 'a
type Inserter<'a> = Infallible where Self: 'a
The type of inserter returned by
SocketMapAddrStateSpec::try_get_inserter
.Source§fn new(_new_sharing_state: &Self::SharingState, id: Self::Id) -> Self
fn new(_new_sharing_state: &Self::SharingState, id: Self::Id) -> Self
Creates a new
Self
holding the provided socket with the given new
sharing state at the specified address.Source§fn contains_id(&self, id: &Self::Id) -> bool
fn contains_id(&self, id: &Self::Id) -> bool
Looks up the ID in self, returning
true
if it is present.Source§fn try_get_inserter<'a, 'b>(
&'b mut self,
_new_sharing_state: &'a Self::SharingState,
) -> Result<Self::Inserter<'b>, IncompatibleError>
fn try_get_inserter<'a, 'b>( &'b mut self, _new_sharing_state: &'a Self::SharingState, ) -> Result<Self::Inserter<'b>, IncompatibleError>
Enables insertion in
self
for a new socket with the provided sharing
state. Read moreSource§fn could_insert(
&self,
_new_sharing_state: &Self::SharingState,
) -> Result<(), IncompatibleError>
fn could_insert( &self, _new_sharing_state: &Self::SharingState, ) -> Result<(), IncompatibleError>
Source§fn remove_by_id(&mut self, _id: Self::Id) -> RemoveResult
fn remove_by_id(&mut self, _id: Self::Id) -> RemoveResult
Removes the given socket from the existing state. Read more
impl<I: IpExt, D: WeakDeviceIdentifier, BT: IcmpEchoBindingsTypes> Eq for IcmpSocketId<I, D, BT>
Auto Trait Implementations§
impl<I, D, BT> Freeze for IcmpSocketId<I, D, BT>
impl<I, D, BT> RefUnwindSafe for IcmpSocketId<I, D, BT>where
<I as DualStackIpExt>::OtherVersion: Sized,
<BT as IcmpEchoBindingsTypes>::ExternalData<I>: RefUnwindSafe,
impl<I, D, BT> Send for IcmpSocketId<I, D, BT>
impl<I, D, BT> Sync for IcmpSocketId<I, D, BT>
impl<I, D, BT> Unpin for IcmpSocketId<I, D, BT>
impl<I, D, BT> UnwindSafe for IcmpSocketId<I, D, BT>where
<I as DualStackIpExt>::OtherVersion: Sized,
<BT as IcmpEchoBindingsTypes>::ExternalData<I>: 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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T, O> OrderedLockAccess<T> for Owhere
O: DelegatedOrderedLockAccess<T>,
impl<T, O> OrderedLockAccess<T> for Owhere
O: DelegatedOrderedLockAccess<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