[][src]Struct grapl_graph_descriptions::graph_description::IpPort

pub struct IpPort {
    pub node_key: String,
    pub ip_address: String,
    pub port: u32,
    pub protocol: String,
}

Fields

node_key: Stringip_address: Stringport: u32protocol: String

Implementations

impl IpPort[src]

pub fn new(
    ip_address: impl Into<String>,
    port: u16,
    protocol: impl Into<String>
) -> Self
[src]

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

Trait Implementations

impl Clone for IpPort[src]

impl Debug for IpPort[src]

impl Default for IpPort[src]

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

impl Eq for IpPort[src]

impl From<IpPort> for Node[src]

impl Message for IpPort[src]

impl NodeT for IpPort[src]

impl PartialEq<IpPort> for IpPort[src]

impl Serialize for IpPort[src]

impl StructuralEq for IpPort[src]

impl StructuralPartialEq for IpPort[src]

Auto Trait Implementations

impl RefUnwindSafe for IpPort

impl Send for IpPort

impl Sync for IpPort

impl Unpin for IpPort

impl UnwindSafe for IpPort

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>,