[][src]Enum vk_parse::InterfaceItem

pub enum InterfaceItem {
    Comment(String),
    Type {
        name: String,
        comment: Option<String>,
    },
    Enum(Enum),
    Command {
        name: String,
        comment: Option<String>,
    },
}

An interface item is a function or an enum which makes up a Vulkan interface.

This structure is used by extensions to express dependencies or include functionality.

Variants

Comment(String)
Type

Fields of Type

name: Stringcomment: Option<String>
Enum(Enum)
Command

Fields of Command

name: Stringcomment: Option<String>

Trait Implementations

impl Clone for InterfaceItem[src]

impl Debug for InterfaceItem[src]

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

impl Eq for InterfaceItem[src]

impl From<InterfaceItem> for FeatureReference[src]

impl From<InterfaceItem> for Option<ExtensionSpecificationElement>[src]

impl PartialEq<InterfaceItem> for InterfaceItem[src]

impl Serialize for InterfaceItem[src]

impl StructuralEq for InterfaceItem[src]

impl StructuralPartialEq for InterfaceItem[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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[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.