Struct maxminddb::geoip2::Isp [] [src]

pub struct Isp {
    pub autonomous_system_number: Option<u32>,
    pub autonomous_system_organization: Option<String>,
    pub isp: Option<String>,
    pub organization: Option<String>,
}

GeoIP2 ISP record

Fields

autonomous_system_number: Option<u32> autonomous_system_organization: Option<String> isp: Option<String> organization: Option<String>

Trait Implementations

impl Debug for Isp
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for Isp
[src]

fn clone(&self) -> Isp

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Decodable for Isp
[src]

fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<Isp, __D::Error>