Enum gfx::MapAccess [] [src]

pub enum MapAccess {
    Readable,
    Writable,
    RW,
}

Specifies the access allowed to a buffer mapping.

Variants

Only allow reads.

Only allow writes.

Allow full access.

Trait Implementations

impl Debug for MapAccess

Formats the value using the given formatter.

impl Clone for MapAccess

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for MapAccess

impl Hash for MapAccess

impl PartialOrd<MapAccess> for MapAccess

impl PartialEq<MapAccess> for MapAccess

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

This method tests for !=.

impl Ord for MapAccess

impl Eq for MapAccess