Struct vk_parse::Tag[][src]

pub struct Tag {
    pub name: String,
    pub author: String,
    pub contact: String,
}

Tags are the little suffixes attached to extension names or items, indicating the author.

Some examples:

  • KHR for Khronos extensions
  • EXT for multi-vendor extensions

Fields

The name of the tag, e.g. "KHR".

Author of the extensions associated with the tag, e.g. "Khronos".

Contact information for the extension author(s).

Trait Implementations

impl From<Tag> for Tag
[src]

Performs the conversion.

impl Debug for Tag
[src]

Formats the value using the given formatter. Read more

impl Clone for Tag
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Tag

impl Sync for Tag