pub enum Endpoint {
Unspecified,
Ident(u16),
Udp(ListenEndpoint),
}
Expand description
Type of endpoint to bind the ICMP socket to. See IcmpSocket::bind for more details.
Variants§
Implementations§
§impl Endpoint
impl Endpoint
pub fn is_specified(&self) -> bool
Trait Implementations§
§impl Ord for Endpoint
impl Ord for Endpoint
§impl PartialOrd<Endpoint> for Endpoint
impl PartialOrd<Endpoint> for Endpoint
§fn partial_cmp(&self, other: &Endpoint) -> Option<Ordering>
fn partial_cmp(&self, other: &Endpoint) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Endpoint
impl Eq for Endpoint
impl StructuralEq for Endpoint
impl StructuralPartialEq for Endpoint
Auto Trait Implementations§
impl RefUnwindSafe for Endpoint
impl Send for Endpoint
impl Sync for Endpoint
impl Unpin for Endpoint
impl UnwindSafe for Endpoint
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