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

The method called to dereference a value

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

The method called to mutably dereference a value

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

A method called when the value goes out of scope. Read more