pub struct PromiseTableStats {
pub total_promises: usize,
pub resolved_promises: usize,
pub pending_promises: usize,
}
Fields§
§total_promises: usize
§resolved_promises: usize
§pending_promises: usize
Trait Implementations§
Source§impl Clone for PromiseTableStats
impl Clone for PromiseTableStats
Source§fn clone(&self) -> PromiseTableStats
fn clone(&self) -> PromiseTableStats
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 moreAuto Trait Implementations§
impl Freeze for PromiseTableStats
impl RefUnwindSafe for PromiseTableStats
impl Send for PromiseTableStats
impl Sync for PromiseTableStats
impl Unpin for PromiseTableStats
impl UnwindSafe for PromiseTableStats
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