Trait vulkano::memory::Content[][src]

pub unsafe trait Content {
    fn ref_from_ptr<'a>(ptr: *mut c_void, size: usize) -> Option<*mut Self>;
fn is_size_suitable(size: usize) -> bool;
fn indiv_size() -> usize; }
Expand description

Trait for types of data that can be mapped.

Required methods

Builds a pointer to this type from a raw pointer.

Returns true if the size is suitable to store a type like this.

Returns the size of an individual element.

Implementations on Foreign Types

Implementors