pub enum PausePoint {
Yield,
Fetch,
}Expand description
Which type of pause point was reached in a tick_until_yield_or_fetch.
Variants§
Trait Implementations§
Source§impl Clone for PausePoint
impl Clone for PausePoint
Source§fn clone(&self) -> PausePoint
fn clone(&self) -> PausePoint
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 Debug for PausePoint
impl Debug for PausePoint
Source§impl PartialEq for PausePoint
impl PartialEq for PausePoint
impl Copy for PausePoint
impl Eq for PausePoint
impl StructuralPartialEq for PausePoint
Auto Trait Implementations§
impl Freeze for PausePoint
impl RefUnwindSafe for PausePoint
impl Send for PausePoint
impl Sync for PausePoint
impl Unpin for PausePoint
impl UnwindSafe for PausePoint
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