pub struct CallbackStats {
pub grants_received: u64,
pub recalls_received: u64,
pub returns_completed: u64,
pub returns_failed: u64,
}Expand description
Redacted callback counters shared by NFSv4 client engines.
Fields§
§grants_received: u64Delegations granted by the server and observed by the client.
recalls_received: u64§returns_completed: u64§returns_failed: u64Trait Implementations§
Source§impl Clone for CallbackStats
impl Clone for CallbackStats
Source§fn clone(&self) -> CallbackStats
fn clone(&self) -> CallbackStats
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 CallbackStats
Source§impl Debug for CallbackStats
impl Debug for CallbackStats
Source§impl Default for CallbackStats
impl Default for CallbackStats
Source§fn default() -> CallbackStats
fn default() -> CallbackStats
Returns the “default value” for a type. Read more
impl Eq for CallbackStats
Source§impl PartialEq for CallbackStats
impl PartialEq for CallbackStats
impl StructuralPartialEq for CallbackStats
Auto Trait Implementations§
impl Freeze for CallbackStats
impl RefUnwindSafe for CallbackStats
impl Send for CallbackStats
impl Sync for CallbackStats
impl Unpin for CallbackStats
impl UnsafeUnpin for CallbackStats
impl UnwindSafe for CallbackStats
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