pub struct Ipv6 {
pub blocked: bool,
pub dns_ptr: Option<Vec<DnsPtr>>,
pub id: Option<i64>,
pub ip: String,
}Expand description
Ipv6 : IPv6 network assigned to this Server and its reverse DNS entry.
Fields§
§blocked: boolIf the IP is blocked by our anti abuse dept.
dns_ptr: Option<Vec<DnsPtr>>Reverse DNS PTR entries for the IPv6 addresses of this Server.
id: Option<i64>ID of the Primary IP.
ip: StringIP address (v6) of this Server.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Ipv6
impl<'de> Deserialize<'de> for Ipv6
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
impl StructuralPartialEq for Ipv6
Auto Trait Implementations§
impl Freeze for Ipv6
impl RefUnwindSafe for Ipv6
impl Send for Ipv6
impl Sync for Ipv6
impl Unpin for Ipv6
impl UnwindSafe for Ipv6
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