pub struct ActionRemoteIpDetails {
pub city: Option<City>,
pub country: Option<Country>,
pub geo_location: Option<GeoLocation>,
pub ip_address_v4: Option<String>,
pub organization: Option<IpOrganizationDetails>,
}Expand description
For AwsApiAction, NetworkConnectionAction, and PortProbeAction, RemoteIpDetails provides information about the remote IP address that was involved in the action.
Fields§
§city: Option<City>The city where the remote IP address is located.
country: Option<Country>The country where the remote IP address is located.
geo_location: Option<GeoLocation>The coordinates of the location of the remote IP address.
ip_address_v4: Option<String>The IP address.
organization: Option<IpOrganizationDetails>The internet service provider (ISP) organization associated with the remote IP address.
Trait Implementations§
Source§impl Clone for ActionRemoteIpDetails
impl Clone for ActionRemoteIpDetails
Source§fn clone(&self) -> ActionRemoteIpDetails
fn clone(&self) -> ActionRemoteIpDetails
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 ActionRemoteIpDetails
impl Debug for ActionRemoteIpDetails
Source§impl Default for ActionRemoteIpDetails
impl Default for ActionRemoteIpDetails
Source§fn default() -> ActionRemoteIpDetails
fn default() -> ActionRemoteIpDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionRemoteIpDetails
impl<'de> Deserialize<'de> for ActionRemoteIpDetails
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 ActionRemoteIpDetails
impl PartialEq for ActionRemoteIpDetails
Source§impl Serialize for ActionRemoteIpDetails
impl Serialize for ActionRemoteIpDetails
impl StructuralPartialEq for ActionRemoteIpDetails
Auto Trait Implementations§
impl Freeze for ActionRemoteIpDetails
impl RefUnwindSafe for ActionRemoteIpDetails
impl Send for ActionRemoteIpDetails
impl Sync for ActionRemoteIpDetails
impl Unpin for ActionRemoteIpDetails
impl UnwindSafe for ActionRemoteIpDetails
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