pub enum CommandPushOutcome {
Queued,
BufferedByBarrier,
}Expand description
Outcome of enqueueing a command.
Variants§
Queued
Command was queued for normal application.
BufferedByBarrier
Command was buffered while a barrier is active.
Trait Implementations§
Source§impl Clone for CommandPushOutcome
impl Clone for CommandPushOutcome
Source§fn clone(&self) -> CommandPushOutcome
fn clone(&self) -> CommandPushOutcome
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 CommandPushOutcome
Source§impl Debug for CommandPushOutcome
impl Debug for CommandPushOutcome
impl Eq for CommandPushOutcome
Source§impl PartialEq for CommandPushOutcome
impl PartialEq for CommandPushOutcome
impl StructuralPartialEq for CommandPushOutcome
Auto Trait Implementations§
impl Freeze for CommandPushOutcome
impl RefUnwindSafe for CommandPushOutcome
impl Send for CommandPushOutcome
impl Sync for CommandPushOutcome
impl Unpin for CommandPushOutcome
impl UnsafeUnpin for CommandPushOutcome
impl UnwindSafe for CommandPushOutcome
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