Enum rspirv::grammar::OperandQuantifier[][src]

pub enum OperandQuantifier {
    One,
    ZeroOrOne,
    ZeroOrMore,
}

The repeat specification for a SPIR-V logical operand.

Variants

This operand appears exactly one time.

This operand can appear zero or one time.

This operand can appear zero or more times.

Trait Implementations

impl Clone for OperandQuantifier
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for OperandQuantifier
[src]

impl Debug for OperandQuantifier
[src]

Formats the value using the given formatter. Read more

impl PartialEq for OperandQuantifier
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for OperandQuantifier
[src]

impl Hash for OperandQuantifier
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations