pub struct Ipv6Country {
pub ip_from: u128,
pub ip_to: u128,
pub country_code: String,
}Fields§
§ip_from: u128§ip_to: u128§country_code: StringImplementations§
Trait Implementations§
Source§impl Clone for Ipv6Country
impl Clone for Ipv6Country
Source§fn clone(&self) -> Ipv6Country
fn clone(&self) -> Ipv6Country
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Ipv6Country
impl Debug for Ipv6Country
Source§impl<'de> Deserialize<'de> for Ipv6Country
impl<'de> Deserialize<'de> for Ipv6Country
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
Source§impl PartialEq for Ipv6Country
impl PartialEq for Ipv6Country
Source§impl Serialize for Ipv6Country
impl Serialize for Ipv6Country
impl Eq for Ipv6Country
impl StructuralPartialEq for Ipv6Country
Auto Trait Implementations§
impl Freeze for Ipv6Country
impl RefUnwindSafe for Ipv6Country
impl Send for Ipv6Country
impl Sync for Ipv6Country
impl Unpin for Ipv6Country
impl UnwindSafe for Ipv6Country
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