Struct vk_parse::VendorId[][src]

pub struct VendorId {
    pub name: String,
    pub comment: Option<String>,
    pub id: u32,
}

Unique identifier for a Vulkan vendor.

Note: in newer versions of the Vulkan spec, this tag is not used, instead it has been replaced by the VKVendorId enum.

Fields

Name of the vendor.

Human-readable description.

The unique ID.

Trait Implementations

impl From<VendorId> for VendorId
[src]

Performs the conversion.

impl Debug for VendorId
[src]

Formats the value using the given formatter. Read more

impl Clone for VendorId
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for VendorId

impl Sync for VendorId