pub enum CommandQueueResult {
Normal,
Error,
Wait,
}Expand description
Result status for a fired queue command.
Variants§
Normal
The command completed and the queue may advance.
Error
The command failed; remaining items in the same group must be removed.
Wait
The command is waiting for an asynchronous continuation before the queue may advance.
Trait Implementations§
Source§impl Clone for CommandQueueResult
impl Clone for CommandQueueResult
Source§fn clone(&self) -> CommandQueueResult
fn clone(&self) -> CommandQueueResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CommandQueueResult
Source§impl Debug for CommandQueueResult
impl Debug for CommandQueueResult
impl Eq for CommandQueueResult
Source§impl PartialEq for CommandQueueResult
impl PartialEq for CommandQueueResult
impl StructuralPartialEq for CommandQueueResult
Auto Trait Implementations§
impl Freeze for CommandQueueResult
impl RefUnwindSafe for CommandQueueResult
impl Send for CommandQueueResult
impl Sync for CommandQueueResult
impl Unpin for CommandQueueResult
impl UnsafeUnpin for CommandQueueResult
impl UnwindSafe for CommandQueueResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more