pub struct BatchIpLookupResponse {
pub results: HashMap<String, IpInfo>,
pub total_processed: i32,
pub successful_lookups: i32,
pub failed_lookups: i32,
}Fields§
§results: HashMap<String, IpInfo>§total_processed: i32§successful_lookups: i32§failed_lookups: i32Trait Implementations§
Source§impl Clone for BatchIpLookupResponse
impl Clone for BatchIpLookupResponse
Source§fn clone(&self) -> BatchIpLookupResponse
fn clone(&self) -> BatchIpLookupResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BatchIpLookupResponse
impl Debug for BatchIpLookupResponse
Source§impl<'de> Deserialize<'de> for BatchIpLookupResponse
impl<'de> Deserialize<'de> for BatchIpLookupResponse
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 Freeze for BatchIpLookupResponse
impl RefUnwindSafe for BatchIpLookupResponse
impl Send for BatchIpLookupResponse
impl Sync for BatchIpLookupResponse
impl Unpin for BatchIpLookupResponse
impl UnsafeUnpin for BatchIpLookupResponse
impl UnwindSafe for BatchIpLookupResponse
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