Struct gns3::GNS3Link[][src]

pub struct GNS3Link {
    pub id: String,
    pub nodes: [GNS3LinkEndpoint; 2],
    pub capture_file_name: Option<String>,
    pub capture_file_path: Option<String>,
    pub capturing: bool,
}

Link data

Fields

id: String

ID of the link

nodes: [GNS3LinkEndpoint; 2]

nodes which the link connects

capture_file_name: Option<String>

pcap file name containing the capture

capture_file_path: Option<String>

pcap file containing the capture

capturing: bool

pcap file containing the capture

Trait Implementations

impl Clone for GNS3Link[src]

impl Debug for GNS3Link[src]

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

impl PartialEq<GNS3Link> for GNS3Link[src]

impl StructuralPartialEq for GNS3Link[src]

Auto Trait Implementations

impl RefUnwindSafe for GNS3Link[src]

impl Send for GNS3Link[src]

impl Sync for GNS3Link[src]

impl Unpin for GNS3Link[src]

impl UnwindSafe for GNS3Link[src]

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> Instrument for T[src]

impl<T> Instrument 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<T> WithSubscriber for T[src]