[][src]Struct grapl_graph_descriptions::graph_description::IpAddress

pub struct IpAddress {
    pub node_key: String,
    pub ip_address: String,
    pub first_seen_timestamp: u64,
    pub last_seen_timestamp: u64,
}

Fields

node_key: Stringip_address: Stringfirst_seen_timestamp: u64last_seen_timestamp: u64

Implementations

impl IpAddress[src]

pub fn new(
    ip_address: impl Into<String>,
    first_seen_timestamp: u64,
    last_seen_timestamp: u64
) -> Self
[src]

pub fn into_json(self) -> Value[src]

Trait Implementations

impl Clone for IpAddress[src]

impl Debug for IpAddress[src]

impl Default for IpAddress[src]

impl<'de> Deserialize<'de> for IpAddress[src]

impl Eq for IpAddress[src]

impl From<IpAddress> for Node[src]

impl Message for IpAddress[src]

impl NodeT for IpAddress[src]

impl PartialEq<IpAddress> for IpAddress[src]

impl Serialize for IpAddress[src]

impl StructuralEq for IpAddress[src]

impl StructuralPartialEq for IpAddress[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,