pub enum ExecutorKind {
Atomic = 0,
SysLockInst = 1,
SpinLockInst = 2,
SysLockBlock = 3,
SpinLockBlock = 4,
}Variants§
Trait Implementations§
Source§impl Clone for ExecutorKind
impl Clone for ExecutorKind
Source§fn clone(&self) -> ExecutorKind
fn clone(&self) -> ExecutorKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for ExecutorKind
impl PartialEq for ExecutorKind
impl Copy for ExecutorKind
impl Eq for ExecutorKind
impl StructuralPartialEq for ExecutorKind
Auto Trait Implementations§
impl Freeze for ExecutorKind
impl RefUnwindSafe for ExecutorKind
impl Send for ExecutorKind
impl Sync for ExecutorKind
impl Unpin for ExecutorKind
impl UnwindSafe for ExecutorKind
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