Enum vulkano::command_buffer::validity::CheckFillBufferError
[−]
[src]
pub enum CheckFillBufferError {
BufferMissingUsage,
WrongAlignment,
}Error that can happen when attempting to add a fill_buffer command.
Variants
BufferMissingUsageThe "transfer destination" usage must be enabled on the buffer.
WrongAlignmentThe data or size must be 4-bytes aligned.
Trait Implementations
impl Debug for CheckFillBufferError[src]
impl Copy for CheckFillBufferError[src]
impl Clone for CheckFillBufferError[src]
fn clone(&self) -> CheckFillBufferError
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Error for CheckFillBufferError[src]
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&Error>1.0.0
The lower-level cause of this error, if any. Read more