[][src]Struct vk_parse::CommandParam

pub struct CommandParam {
    pub len: Option<String>,
    pub altlen: Option<String>,
    pub externsync: Option<String>,
    pub optional: Option<String>,
    pub noautovalidity: Option<String>,
    pub definition: NameWithType,
}

Parameter for this Vulkan function.

Fields

len: Option<String>

The expression which indicates the length of this array.

altlen: Option<String>

Alternate description of the length of this parameter.

externsync: Option<String>

Whether this parameter must be externally synchronised by the app.

optional: Option<String>

Whether this parameter must have a non-null value.

noautovalidity: Option<String>

Disables automatic validity language being generated for this item.

definition: NameWithType

The definition of this parameter.

Trait Implementations

impl Clone for CommandParam[src]

impl Debug for CommandParam[src]

impl Default for CommandParam[src]

impl Eq for CommandParam[src]

impl PartialEq<CommandParam> for CommandParam[src]

impl StructuralEq for CommandParam[src]

impl StructuralPartialEq for CommandParam[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.