pub struct RunLoopResult {
pub reason: RunLoopStopReason,
pub ticks: usize,
pub last_snapshot: RunSnapshotDTO,
}Fields§
§reason: RunLoopStopReason§ticks: usize§last_snapshot: RunSnapshotDTOTrait Implementations§
Source§impl Clone for RunLoopResult
impl Clone for RunLoopResult
Source§fn clone(&self) -> RunLoopResult
fn clone(&self) -> RunLoopResult
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 RunLoopResult
impl Debug for RunLoopResult
impl Eq for RunLoopResult
Source§impl PartialEq for RunLoopResult
impl PartialEq for RunLoopResult
Source§fn eq(&self, other: &RunLoopResult) -> bool
fn eq(&self, other: &RunLoopResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RunLoopResult
Auto Trait Implementations§
impl Freeze for RunLoopResult
impl RefUnwindSafe for RunLoopResult
impl Send for RunLoopResult
impl Sync for RunLoopResult
impl Unpin for RunLoopResult
impl UnsafeUnpin for RunLoopResult
impl UnwindSafe for RunLoopResult
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