Struct ntap_core::db::ip::IpDatabase
source · pub struct IpDatabase {
pub ipv4_country_map: RangeInclusiveMap<u32, String>,
pub ipv6_country_map: RangeInclusiveMap<u128, String>,
pub ipv4_asn_map: RangeInclusiveMap<u32, u32>,
pub ipv6_asn_map: RangeInclusiveMap<u128, u32>,
pub country_map: HashMap<String, String>,
pub autonomous_map: HashMap<u32, String>,
}
Expand description
In-memory IP database with range map and hash map
Fields§
§ipv4_country_map: RangeInclusiveMap<u32, String>
§ipv6_country_map: RangeInclusiveMap<u128, String>
§ipv4_asn_map: RangeInclusiveMap<u32, u32>
§ipv6_asn_map: RangeInclusiveMap<u128, u32>
§country_map: HashMap<String, String>
§autonomous_map: HashMap<u32, String>
Implementations§
source§impl IpDatabase
impl IpDatabase
pub fn new() -> IpDatabase
pub fn load() -> Result<IpDatabase, Box<dyn Error>>
pub fn load_ipv4_country_map(&mut self) -> Result<(), Box<dyn Error>>
pub fn load_ipv6_country_map(&mut self) -> Result<(), Box<dyn Error>>
pub fn load_ipv4_asn_map(&mut self) -> Result<(), Box<dyn Error>>
pub fn load_ipv6_asn_map(&mut self) -> Result<(), Box<dyn Error>>
pub fn load_country_map(&mut self) -> Result<(), Box<dyn Error>>
pub fn load_autonomous_map(&mut self) -> Result<(), Box<dyn Error>>
pub fn get_ipv4_info(&self, ipv4_addr: Ipv4Addr) -> Option<IpInfo>
pub fn get_ipv6_info(&self, ip_addr: Ipv6Addr) -> Option<IpInfo>
Trait Implementations§
source§impl Clone for IpDatabase
impl Clone for IpDatabase
source§fn clone(&self) -> IpDatabase
fn clone(&self) -> IpDatabase
Returns a copy 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 IpDatabase
impl Debug for IpDatabase
source§impl PartialEq for IpDatabase
impl PartialEq for IpDatabase
source§fn eq(&self, other: &IpDatabase) -> bool
fn eq(&self, other: &IpDatabase) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for IpDatabase
impl StructuralPartialEq for IpDatabase
Auto Trait Implementations§
impl Freeze for IpDatabase
impl RefUnwindSafe for IpDatabase
impl Send for IpDatabase
impl Sync for IpDatabase
impl Unpin for IpDatabase
impl UnwindSafe for IpDatabase
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more