#[repr(C)]pub struct vrttxt_line {
pub offset: off_t,
pub len: c_int,
pub field_offsets: [c_int; 65535],
pub num_fields: c_int,
pub error: c_int,
}Expand description
Container for Virtual Text record (line)
Fields§
§offset: off_tcurrent offset (parsing)
len: c_intline length (in bytes)
field_offsets: [c_int; 65535]array of field offsets (where each field starts)
num_fields: c_intnumber of field into the record
error: c_intvalidity flag
Trait Implementations§
Source§impl Clone for vrttxt_line
impl Clone for vrttxt_line
Source§fn clone(&self) -> vrttxt_line
fn clone(&self) -> vrttxt_line
Returns a copy 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 moreimpl Copy for vrttxt_line
Auto Trait Implementations§
impl Freeze for vrttxt_line
impl RefUnwindSafe for vrttxt_line
impl Send for vrttxt_line
impl Sync for vrttxt_line
impl Unpin for vrttxt_line
impl UnwindSafe for vrttxt_line
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