pub struct Isp<'a> {
pub autonomous_system_number: Option<u32>,
pub autonomous_system_organization: Option<&'a str>,
pub isp: Option<&'a str>,
pub mobile_country_code: Option<&'a str>,
pub mobile_network_code: Option<&'a str>,
pub organization: Option<&'a str>,
}
Expand description
GeoIP2 ISP record
Fields§
§autonomous_system_number: Option<u32>
§autonomous_system_organization: Option<&'a str>
§isp: Option<&'a str>
§mobile_country_code: Option<&'a str>
§mobile_network_code: Option<&'a str>
§organization: Option<&'a str>
Trait Implementations§
Source§impl<'de: 'a, 'a> Deserialize<'de> for Isp<'a>
impl<'de: 'a, 'a> Deserialize<'de> for Isp<'a>
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
Auto Trait Implementations§
impl<'a> Freeze for Isp<'a>
impl<'a> RefUnwindSafe for Isp<'a>
impl<'a> Send for Isp<'a>
impl<'a> Sync for Isp<'a>
impl<'a> Unpin for Isp<'a>
impl<'a> UnwindSafe for Isp<'a>
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