#[repr(C)]pub struct readstat_io_s {
pub open: readstat_open_handler,
pub close: readstat_close_handler,
pub seek: readstat_seek_handler,
pub read: readstat_read_handler,
pub update: readstat_update_handler,
pub io_ctx: *mut c_void,
pub io_ctx_needs_free: c_int,
}Fields§
§open: readstat_open_handler§close: readstat_close_handler§seek: readstat_seek_handler§read: readstat_read_handler§update: readstat_update_handler§io_ctx: *mut c_void§io_ctx_needs_free: c_intTrait Implementations§
Source§impl Clone for readstat_io_s
impl Clone for readstat_io_s
Source§fn clone(&self) -> readstat_io_s
fn clone(&self) -> readstat_io_s
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 moreSource§impl Debug for readstat_io_s
impl Debug for readstat_io_s
impl Copy for readstat_io_s
Auto Trait Implementations§
impl Freeze for readstat_io_s
impl RefUnwindSafe for readstat_io_s
impl !Send for readstat_io_s
impl !Sync for readstat_io_s
impl Unpin for readstat_io_s
impl UnwindSafe for readstat_io_s
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