Enum vk_parse::TypeItem[][src]

pub enum TypeItem {
    Type {
        api: Option<String>,
        alias: Option<String>,
        requires: Option<String>,
        name: Option<String>,
        category: Option<String>,
        parent: Option<String>,
        returnedonly: Option<String>,
        structextends: Option<String>,
        comment: Option<String>,
        contents: TypeContents,
    },
    Comment(String),
}

An item making up a type definition.

Variants

Fields of Type

Trait Implementations

impl From<TypeItem> for Option<DefinitionsElement>
[src]

Performs the conversion.

impl Debug for TypeItem
[src]

Formats the value using the given formatter. Read more

impl Clone for TypeItem
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for TypeItem

impl Sync for TypeItem