[][src]Struct vk_parse::Extension

pub struct Extension {
    pub name: String,
    pub comment: Option<String>,
    pub number: Option<i64>,
    pub protect: Option<String>,
    pub platform: Option<String>,
    pub author: Option<String>,
    pub contact: Option<String>,
    pub ext_type: Option<String>,
    pub requires: Option<String>,
    pub requires_core: Option<String>,
    pub supported: Option<String>,
    pub deprecatedby: Option<String>,
    pub promotedto: Option<String>,
    pub obsoletedby: Option<String>,
    pub provisional: bool,
    pub specialuse: Option<String>,
    pub sortorder: Option<i64>,
    pub children: Vec<ExtensionChild>,
}

Fields

name: String

Name of the extension.

comment: Option<String>

Human-readable description.

number: Option<i64>

The unique index of this extension.

protect: Option<String>platform: Option<String>

Which platform it works with, if any.

author: Option<String>

Tag name of the author.

contact: Option<String>

Contact information for extension author(s).

ext_type: Option<String>

The level at which the extension applies (instance / device).

requires: Option<String>requires_core: Option<String>supported: Option<String>deprecatedby: Option<String>promotedto: Option<String>

Whether this extension was promoted to core, and in which version.

obsoletedby: Option<String>provisional: bool

'true' if this extension is released provisionally

specialuse: Option<String>

The items which make up this extension.

sortorder: Option<i64>

Relative sortorder

children: Vec<ExtensionChild>

The items which make up this extension.

Trait Implementations

impl Clone for Extension[src]

impl Debug for Extension[src]

impl Default for Extension[src]

impl Eq for Extension[src]

impl PartialEq<Extension> for Extension[src]

impl StructuralEq for Extension[src]

impl StructuralPartialEq for Extension[src]

Auto Trait Implementations

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