Struct gns3::GNS3Template[][src]

pub struct GNS3Template {
    pub id: String,
    pub name: String,
    pub category: String,
    pub template_type: String,
    pub hda_disk_image: Option<String>,
}

GNS3 Template

Fields

id: String

ID of the template

name: String

name of the template

category: String

device category

template_type: String

Type of the template (e.g. qemu).

hda_disk_image: Option<String>

Disk image of the device (only for qemu)

Trait Implementations

impl Clone for GNS3Template[src]

impl Debug for GNS3Template[src]

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

impl PartialEq<GNS3Template> for GNS3Template[src]

impl StructuralPartialEq for GNS3Template[src]

Auto Trait Implementations

impl RefUnwindSafe for GNS3Template[src]

impl Send for GNS3Template[src]

impl Sync for GNS3Template[src]

impl Unpin for GNS3Template[src]

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