#[repr(C)]pub struct readstat_writer_s {Show 30 fields
pub data_writer: readstat_data_writer,
pub bytes_written: usize,
pub version: c_long,
pub is_64bit: c_int,
pub compression: readstat_compress_t,
pub timestamp: time_t,
pub variables: *mut *mut readstat_variable_t,
pub variables_count: c_long,
pub variables_capacity: c_long,
pub label_sets: *mut *mut readstat_label_set_t,
pub label_sets_count: c_long,
pub label_sets_capacity: c_long,
pub notes: *mut *mut c_char,
pub notes_count: c_long,
pub notes_capacity: c_long,
pub string_refs: *mut *mut readstat_string_ref_t,
pub string_refs_count: c_long,
pub string_refs_capacity: c_long,
pub row: *mut c_uchar,
pub row_len: usize,
pub row_count: c_int,
pub current_row: c_int,
pub file_label: [c_char; 257],
pub table_name: [c_char; 33],
pub fweight_variable: *const readstat_variable_t,
pub callbacks: readstat_writer_callbacks_t,
pub error_handler: readstat_error_handler,
pub module_ctx: *mut c_void,
pub user_ctx: *mut c_void,
pub initialized: c_int,
}Fields§
§data_writer: readstat_data_writer§bytes_written: usize§version: c_long§is_64bit: c_int§compression: readstat_compress_t§timestamp: time_t§variables: *mut *mut readstat_variable_t§variables_count: c_long§variables_capacity: c_long§label_sets: *mut *mut readstat_label_set_t§label_sets_count: c_long§label_sets_capacity: c_long§notes: *mut *mut c_char§notes_count: c_long§notes_capacity: c_long§string_refs: *mut *mut readstat_string_ref_t§string_refs_count: c_long§string_refs_capacity: c_long§row: *mut c_uchar§row_len: usize§row_count: c_int§current_row: c_int§file_label: [c_char; 257]§table_name: [c_char; 33]§fweight_variable: *const readstat_variable_t§callbacks: readstat_writer_callbacks_t§error_handler: readstat_error_handler§module_ctx: *mut c_void§user_ctx: *mut c_void§initialized: c_intTrait Implementations§
Source§impl Clone for readstat_writer_s
impl Clone for readstat_writer_s
Source§fn clone(&self) -> readstat_writer_s
fn clone(&self) -> readstat_writer_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_writer_s
impl Debug for readstat_writer_s
impl Copy for readstat_writer_s
Auto Trait Implementations§
impl Freeze for readstat_writer_s
impl RefUnwindSafe for readstat_writer_s
impl !Send for readstat_writer_s
impl !Sync for readstat_writer_s
impl Unpin for readstat_writer_s
impl UnwindSafe for readstat_writer_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