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