Struct gns3::GNS3Project[][src]

pub struct GNS3Project {
    pub id: String,
    pub name: String,
    pub path: String,
    pub filename: String,
    pub status: GNS3ProjectStatus,
}

Project Information

Fields

id: String

ID of the project

name: String

Name of the project

path: String

Path of the project

filename: String

filename of the project

status: GNS3ProjectStatus

Status of the project

Trait Implementations

impl Clone for GNS3Project[src]

impl Debug for GNS3Project[src]

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

impl PartialEq<GNS3Project> for GNS3Project[src]

impl StructuralPartialEq for GNS3Project[src]

Auto Trait Implementations

impl RefUnwindSafe for GNS3Project[src]

impl Send for GNS3Project[src]

impl Sync for GNS3Project[src]

impl Unpin for GNS3Project[src]

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