[][src]Struct abuseipdb::BlockCheck

pub struct BlockCheck {
    pub network_address: IpAddr,
    pub netmask: IpAddr,
    pub min_address: IpAddr,
    pub max_address: IpAddr,
    pub num_possible_hosts: u64,
    pub address_space_desc: String,
    pub reported_address: Vec<BlockCheckReport>,
}

Fields

network_address: IpAddrnetmask: IpAddrmin_address: IpAddrmax_address: IpAddrnum_possible_hosts: u64address_space_desc: Stringreported_address: Vec<BlockCheckReport>

Trait Implementations

impl Clone for BlockCheck[src]

impl Debug for BlockCheck[src]

impl<'de> Deserialize<'de> for BlockCheck[src]

impl PartialEq<BlockCheck> for BlockCheck[src]

impl Serialize for BlockCheck[src]

impl StructuralPartialEq for BlockCheck[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.