Struct vulkano::memory::CpuAccess[][src]

pub struct CpuAccess<'a, T: ?Sized + 'a> { /* fields omitted */ }

Object that can be used to read or write the content of a MappedDeviceMemory.

This object derefs to the content, just like a MutexGuard for example.

Trait Implementations

impl<'a, T: ?Sized + 'a> Send for CpuAccess<'a, T>
[src]

impl<'a, T: ?Sized + 'a> Sync for CpuAccess<'a, T>
[src]

impl<'a, T: ?Sized + 'a> Deref for CpuAccess<'a, T>
[src]

The resulting type after dereferencing.

Dereferences the value.

impl<'a, T: ?Sized + 'a> DerefMut for CpuAccess<'a, T>
[src]

Mutably dereferences the value.

impl<'a, T: ?Sized + 'a> Drop for CpuAccess<'a, T>
[src]

Executes the destructor for this type. Read more