Enum sentry_types::protocol::v7::IpAddress
source · pub enum IpAddress {
Auto,
Exact(IpAddr),
}
Expand description
An IP address, either IPv4, IPv6 or Auto.
Variants§
Auto
The IP address needs to be infered from the user’s context.
Exact(IpAddr)
The exact given IP address (v4 or v6).
Trait Implementations§
source§impl<'de> Deserialize<'de> for IpAddress
impl<'de> Deserialize<'de> for IpAddress
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Ord for IpAddress
impl Ord for IpAddress
source§impl PartialEq<IpAddr> for IpAddress
impl PartialEq<IpAddr> for IpAddress
source§impl PartialEq for IpAddress
impl PartialEq for IpAddress
source§impl PartialOrd<IpAddr> for IpAddress
impl PartialOrd<IpAddr> for IpAddress
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 moresource§impl PartialOrd for IpAddress
impl PartialOrd for IpAddress
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 IpAddress
impl Eq for IpAddress
impl StructuralPartialEq for IpAddress
Auto Trait Implementations§
impl Freeze for IpAddress
impl RefUnwindSafe for IpAddress
impl Send for IpAddress
impl Sync for IpAddress
impl Unpin for IpAddress
impl UnwindSafe for IpAddress
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