Struct vulkano::sync::AccessFlagBits [] [src]

pub struct AccessFlagBits {
    pub indirect_command_read: bool,
    pub index_read: bool,
    pub vertex_attribute_read: bool,
    pub uniform_read: bool,
    pub input_attachment_read: bool,
    pub shader_read: bool,
    pub shader_write: bool,
    pub color_attachment_read: bool,
    pub color_attachment_write: bool,
    pub depth_stencil_attachment_read: bool,
    pub depth_stencil_attachment_write: bool,
    pub transfer_read: bool,
    pub transfer_write: bool,
    pub host_read: bool,
    pub host_write: bool,
    pub memory_read: bool,
    pub memory_write: bool,
}

Fields

Methods

impl AccessFlagBits
[src]

Builds an AccessFlagBits struct with all bits set.

Builds an AccessFlagBits struct with none of the bits set.

Trait Implementations

impl Debug for AccessFlagBits
[src]

Formats the value using the given formatter.

impl Copy for AccessFlagBits
[src]

impl Clone for AccessFlagBits
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl BitOr for AccessFlagBits
[src]

The resulting type after applying the | operator

The method for the | operator

impl BitOrAssign for AccessFlagBits
[src]

The method for the |= operator