Struct smoltcp::wire::IpEndpoint
source · [−]pub struct IpEndpoint {
pub addr: Address,
pub port: u16,
}Expand description
An internet endpoint address.
An endpoint can be constructed from a port, in which case the address is unspecified.
Fields
addr: Addressport: u16Implementations
sourceimpl Endpoint
impl Endpoint
sourcepub const UNSPECIFIED: Endpoint = Endpoint {
addr: Address::Unspecified,
port: 0,
}
pub const UNSPECIFIED: Endpoint = Endpoint { addr: Address::Unspecified, port: 0, }
An endpoint with unspecified address and port.
sourcepub fn new(addr: Address, port: u16) -> Endpoint
pub fn new(addr: Address, port: u16) -> Endpoint
Create an endpoint address from given address and port.
sourcepub fn is_specified(&self) -> bool
pub fn is_specified(&self) -> bool
Query whether the endpoint has a specified address and port.
Trait Implementations
sourceimpl FromStr for IpEndpoint
impl FromStr for IpEndpoint
type Err = ()
type Err = ()
The associated error which can be returned from parsing.
sourcefn from_str(s: &str) -> Result<IpEndpoint, ()>
fn from_str(s: &str) -> Result<IpEndpoint, ()>
Parses a string s to return a value of this type. Read more
sourceimpl Hash for Endpoint
impl Hash for Endpoint
sourcefn hash<__H: Hasher>(&self, state: &mut __H)
fn hash<__H: Hasher>(&self, state: &mut __H)
Feeds this value into the given [Hasher]. Read more
1.3.0fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
sourceimpl Ord for Endpoint
impl Ord for Endpoint
sourceimpl PartialOrd<Endpoint> for Endpoint
impl PartialOrd<Endpoint> for Endpoint
sourcefn partial_cmp(&self, other: &Endpoint) -> Option<Ordering>
fn partial_cmp(&self, other: &Endpoint) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0fn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0fn 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 more
impl 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
impl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more