Struct gns3::GNS3Interface[][src]

pub struct GNS3Interface {
    pub adapter_number: u32,
    pub port_number: u32,
    pub name: String,
    pub short_name: String,
    pub link_type: String,
}

Interface Information

Fields

adapter_number: u32

adapter number

port_number: u32

port number

name: String

Name of the interface

short_name: String

Short name of the interface

link_type: String

Link type (Ethernet, etc...)

Trait Implementations

impl Clone for GNS3Interface[src]

impl Debug for GNS3Interface[src]

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

impl PartialEq<GNS3Interface> for GNS3Interface[src]

impl StructuralPartialEq for GNS3Interface[src]

Auto Trait Implementations

impl RefUnwindSafe for GNS3Interface[src]

impl Send for GNS3Interface[src]

impl Sync for GNS3Interface[src]

impl Unpin for GNS3Interface[src]

impl UnwindSafe for GNS3Interface[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]