#[repr(u8)]pub enum AddressType {
Invalid = 0,
Ipv4 = 1,
Ipv6 = 2,
I2p = 3,
Tor = 4,
}Expand description
An enumeration of address types.
Used in cuprate-p2p, cuprate-rpc-types.
Original definition:
§Serde
This type’s serde implementation (de)serializes from a u8.
use cuprate_types::AddressType as A;
use serde_json::{to_string, from_str};
assert_eq!(from_str::<A>(&"0").unwrap(), A::Invalid);
assert_eq!(from_str::<A>(&"1").unwrap(), A::Ipv4);
assert_eq!(from_str::<A>(&"2").unwrap(), A::Ipv6);
assert_eq!(from_str::<A>(&"3").unwrap(), A::I2p);
assert_eq!(from_str::<A>(&"4").unwrap(), A::Tor);
assert_eq!(to_string(&A::Invalid).unwrap(), "0");
assert_eq!(to_string(&A::Ipv4).unwrap(), "1");
assert_eq!(to_string(&A::Ipv6).unwrap(), "2");
assert_eq!(to_string(&A::I2p).unwrap(), "3");
assert_eq!(to_string(&A::Tor).unwrap(), "4");Variants§
Implementations§
Source§impl AddressType
impl AddressType
Sourcepub const fn is_invalid(&self) -> bool
pub const fn is_invalid(&self) -> bool
Returns true if the enum is AddressType::Invalid otherwise false
Sourcepub const fn is_ipv_4(&self) -> bool
pub const fn is_ipv_4(&self) -> bool
Returns true if the enum is AddressType::Ipv4 otherwise false
Sourcepub const fn is_ipv_6(&self) -> bool
pub const fn is_ipv_6(&self) -> bool
Returns true if the enum is AddressType::Ipv6 otherwise false
Source§impl AddressType
impl AddressType
Source§impl AddressType
impl AddressType
Sourcepub const fn from_u8(u: u8) -> Option<Self>
pub const fn from_u8(u: u8) -> Option<Self>
§Errors
This returns None if u > 4.
use cuprate_types::AddressType as A;
assert_eq!(A::from_u8(0), Some(A::Invalid));
assert_eq!(A::from_u8(1), Some(A::Ipv4));
assert_eq!(A::from_u8(2), Some(A::Ipv6));
assert_eq!(A::from_u8(3), Some(A::I2p));
assert_eq!(A::from_u8(4), Some(A::Tor));
assert_eq!(A::from_u8(5), None);Trait Implementations§
Source§impl AsRef<str> for AddressType
impl AsRef<str> for AddressType
Source§impl Clone for AddressType
impl Clone for AddressType
Source§fn clone(&self) -> AddressType
fn clone(&self) -> AddressType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AddressType
Source§impl Debug for AddressType
impl Debug for AddressType
Source§impl Default for AddressType
impl Default for AddressType
Source§fn default() -> AddressType
fn default() -> AddressType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AddressType
impl<'de> Deserialize<'de> for AddressType
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 Display for AddressType
impl Display for AddressType
Source§impl EpeeValue for AddressType
Available on crate feature epee only.
impl EpeeValue for AddressType
Available on crate feature
epee only.const MARKER: Marker = u8::MARKER
fn read<B: Buf>( r: &mut B, marker: &Marker, limits: EpeeValueLimits, ) -> Result<Self>
fn write<B: BufMut>(self, w: &mut B) -> Result<()>
fn should_write(&self) -> bool
Source§fn epee_default_value() -> Option<Self>
fn epee_default_value() -> Option<Self>
This is different than default field values and instead is the default
value of a whole type. Read more
impl Eq for AddressType
Source§impl<'_derivative_strum> From<&'_derivative_strum AddressType> for &'static str
impl<'_derivative_strum> From<&'_derivative_strum AddressType> for &'static str
Source§fn from(x: &'_derivative_strum AddressType) -> &'static str
fn from(x: &'_derivative_strum AddressType) -> &'static str
Converts to this type from the input type.
Source§impl From<AddressType> for &'static str
impl From<AddressType> for &'static str
Source§fn from(x: AddressType) -> &'static str
fn from(x: AddressType) -> &'static str
Converts to this type from the input type.
Source§impl From<AddressType> for u8
impl From<AddressType> for u8
Source§fn from(value: AddressType) -> Self
fn from(value: AddressType) -> Self
Converts to this type from the input type.
Source§impl FromStr for AddressType
impl FromStr for AddressType
Source§impl Hash for AddressType
impl Hash for AddressType
Source§impl Ord for AddressType
impl Ord for AddressType
Source§fn cmp(&self, other: &AddressType) -> Ordering
fn cmp(&self, other: &AddressType) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AddressType
impl PartialEq for AddressType
Source§impl PartialOrd for AddressType
impl PartialOrd for AddressType
Source§impl Serialize for AddressType
impl Serialize for AddressType
impl StructuralPartialEq for AddressType
Source§impl TryFrom<&str> for AddressType
impl TryFrom<&str> for AddressType
Source§impl TryFrom<u8> for AddressType
impl TryFrom<u8> for AddressType
Auto Trait Implementations§
impl Freeze for AddressType
impl RefUnwindSafe for AddressType
impl Send for AddressType
impl Sync for AddressType
impl Unpin for AddressType
impl UnsafeUnpin for AddressType
impl UnwindSafe for AddressType
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 1 byte
Size for each variant:
Invalid: 0 bytesIpv4: 0 bytesIpv6: 0 bytesI2p: 0 bytesTor: 0 bytes