pub enum CommandListState {
Recording,
Closed,
}Expand description
State of a command list in the host-side model.
Variants§
Recording
Open for append_* calls.
Closed
Closed; ready for submission, no further appends until reset.
Trait Implementations§
Source§impl Clone for CommandListState
impl Clone for CommandListState
Source§fn clone(&self) -> CommandListState
fn clone(&self) -> CommandListState
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 CommandListState
Source§impl Debug for CommandListState
impl Debug for CommandListState
impl Eq for CommandListState
Source§impl PartialEq for CommandListState
impl PartialEq for CommandListState
Source§fn eq(&self, other: &CommandListState) -> bool
fn eq(&self, other: &CommandListState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CommandListState
Auto Trait Implementations§
impl Freeze for CommandListState
impl RefUnwindSafe for CommandListState
impl Send for CommandListState
impl Sync for CommandListState
impl Unpin for CommandListState
impl UnsafeUnpin for CommandListState
impl UnwindSafe for CommandListState
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