pub enum ConcurrencyClass {
Stateless,
OrderedStateful,
Source,
}Expand description
Declares how scheduler may run node callbacks across frames.
Variants§
Stateless
Callback has no cross-frame mutable state.
OrderedStateful
Callback may prepare out of order but must commit in increasing frame order.
Source
Callback is a source and may declare source-specific capability limits.
Implementations§
Trait Implementations§
Source§impl Clone for ConcurrencyClass
impl Clone for ConcurrencyClass
Source§fn clone(&self) -> ConcurrencyClass
fn clone(&self) -> ConcurrencyClass
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 moreSource§impl Debug for ConcurrencyClass
impl Debug for ConcurrencyClass
Source§impl PartialEq for ConcurrencyClass
impl PartialEq for ConcurrencyClass
Source§fn eq(&self, other: &ConcurrencyClass) -> bool
fn eq(&self, other: &ConcurrencyClass) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ConcurrencyClass
impl Eq for ConcurrencyClass
impl StructuralPartialEq for ConcurrencyClass
Auto Trait Implementations§
impl Freeze for ConcurrencyClass
impl RefUnwindSafe for ConcurrencyClass
impl Send for ConcurrencyClass
impl Sync for ConcurrencyClass
impl Unpin for ConcurrencyClass
impl UnsafeUnpin for ConcurrencyClass
impl UnwindSafe for ConcurrencyClass
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