pub struct ProviderStats {
pub work: u64,
pub affected: u64,
}Expand description
Provider-reported bounded work and redaction-safe facts.
Fields§
§work: u64Provider work units consumed.
affected: u64Rows affected by a mutation or migration.
Trait Implementations§
Source§impl Clone for ProviderStats
impl Clone for ProviderStats
Source§fn clone(&self) -> ProviderStats
fn clone(&self) -> ProviderStats
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 moreimpl Copy for ProviderStats
Source§impl Debug for ProviderStats
impl Debug for ProviderStats
Source§impl Default for ProviderStats
impl Default for ProviderStats
Source§fn default() -> ProviderStats
fn default() -> ProviderStats
Returns the “default value” for a type. Read more
impl Eq for ProviderStats
Source§impl PartialEq for ProviderStats
impl PartialEq for ProviderStats
impl StructuralPartialEq for ProviderStats
Auto Trait Implementations§
impl Freeze for ProviderStats
impl RefUnwindSafe for ProviderStats
impl Send for ProviderStats
impl Sync for ProviderStats
impl Unpin for ProviderStats
impl UnsafeUnpin for ProviderStats
impl UnwindSafe for ProviderStats
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