Enum gfx::MapAccess [] [src]

pub enum MapAccess {
    Readable,
    Writable,
    RW,
}

Specifies the access allowed to a buffer mapping.

Variants

Readable

Only allow reads.

Writable

Only allow writes.

RW

Allow full access.

Trait Implementations

Derived Implementations

impl Debug for MapAccess

fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>

impl Clone for MapAccess

fn clone(&self) -> MapAccess

1.0.0fn clone_from(&mut self, source: &Self)

impl Copy for MapAccess

impl Hash for MapAccess

fn hash<__H>(&self, __arg_0: &mut __H) where __H: Hasher

impl PartialOrd<MapAccess> for MapAccess

fn partial_cmp(&self, __arg_0: &MapAccess) -> Option<Ordering>

fn lt(&self, __arg_0: &MapAccess) -> bool

fn le(&self, __arg_0: &MapAccess) -> bool

fn gt(&self, __arg_0: &MapAccess) -> bool

fn ge(&self, __arg_0: &MapAccess) -> bool

impl PartialEq<MapAccess> for MapAccess

fn eq(&self, __arg_0: &MapAccess) -> bool

fn ne(&self, __arg_0: &MapAccess) -> bool

impl Ord for MapAccess

fn cmp(&self, __arg_0: &MapAccess) -> Ordering

impl Eq for MapAccess