Struct fio_ioengine_sys::io_log[][src]

#[repr(C)]
pub struct io_log {
Show fields pub io_logs: flist_head, pub cur_log_max: u32, pub pending: *mut io_logs, pub log_ddir_mask: c_uint, pub filename: *mut c_char, pub td: *mut thread_data, pub log_type: c_uint, pub disabled: bool_, pub log_offset: c_uint, pub log_gz: c_uint, pub log_gz_store: c_uint, pub avg_window: [io_stat; 3], pub avg_msec: c_ulong, pub avg_last: [c_ulong; 3], pub hist_window: [io_hist; 3], pub hist_msec: c_ulong, pub hist_coarseness: c_uint, pub chunk_lock: pthread_mutex_t, pub chunk_seq: c_uint, pub chunk_list: flist_head, pub deferred_free_lock: pthread_mutex_t, pub deferred_items: [*mut c_void; 8], pub deferred: c_uint,
}

Fields

io_logs: flist_headcur_log_max: u32pending: *mut io_logslog_ddir_mask: c_uintfilename: *mut c_chartd: *mut thread_datalog_type: c_uintdisabled: bool_log_offset: c_uintlog_gz: c_uintlog_gz_store: c_uintavg_window: [io_stat; 3]avg_msec: c_ulongavg_last: [c_ulong; 3]hist_window: [io_hist; 3]hist_msec: c_ulonghist_coarseness: c_uintchunk_lock: pthread_mutex_tchunk_seq: c_uintchunk_list: flist_headdeferred_free_lock: pthread_mutex_tdeferred_items: [*mut c_void; 8]deferred: c_uint

Trait Implementations

impl Clone for io_log[src]

fn clone(&self) -> io_log[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for io_log[src]

Auto Trait Implementations

impl !Send for io_log

impl !Sync for io_log

impl Unpin for io_log

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.