Home
last modified time | relevance | path

Searched defs:SubmitCommandBufferError (Results 1 – 1 of 1) sorted by relevance

/external/rust/crates/vulkano/src/command_buffer/submit/
Dqueue_submit.rs199 pub fn submit(self, queue: &Queue) -> Result<(), SubmitCommandBufferError> { in submit() argument
250 pub enum SubmitCommandBufferError { enum
258 impl error::Error for SubmitCommandBufferError { implementation
268 impl fmt::Display for SubmitCommandBufferError { implementation
283 impl From<Error> for SubmitCommandBufferError { implementation
285 fn from(err: Error) -> SubmitCommandBufferError { in from()