Struct TailPushingStats

Source
pub struct TailPushingStats {
    pub logspace: u32,
    pub sleep_logspace: u32,
    pub push_ails: u32,
    pub push_ail_success: u32,
    pub push_ail_pushbuf: u32,
    pub push_ail_pinned: u32,
    pub push_ail_locked: u32,
    pub push_ail_flushing: u32,
    pub push_ail_restarts: u32,
    pub push_ail_flush: u32,
}

Fields§

§logspace: u32

Value from the xs_try_logspace field of struct xfsstats.

§sleep_logspace: u32

Value from the xs_sleep_logspace field of struct xfsstats.

§push_ails: u32

The number of times the tail of the AIL is moved forward. It is equivalent to the number of successful calls to the function xfs_trans_push_ail().

§push_ail_success: u32

Value from xs_push_ail_success field of struct xfsstats.

§push_ail_pushbuf: u32

Value from xs_push_ail_pushbuf field of struct xfsstats.

§push_ail_pinned: u32

Value from xs_push_ail_pinned field of struct xfsstats.

§push_ail_locked: u32

Value from xs_push_ail_locked field of struct xfsstats.

§push_ail_flushing: u32

Value from xs_push_ail_flushing field of struct xfsstats.

§push_ail_restarts: u32

Value from xs_push_ail_restarts field of struct xfsstats.

§push_ail_flush: u32

Value from xs_push_ail_flush field of struct xfsstats.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.