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(_: usize) -> bool;
    fn indiv_size() -> usize;
}

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.

Implementors