#[repr(C)]pub struct vrttxt_row_block {
pub rows: [vrttxt_row; 65535],
pub num_rows: c_int,
pub min_line_no: c_int,
pub max_line_no: c_int,
pub next: *mut vrttxt_row_block,
}Expand description
Container for Virtual Text block of records
Fields§
§rows: [vrttxt_row; 65535]array of records [lines]
num_rows: c_intnumber of records into the array
min_line_no: c_intmin Line Number
max_line_no: c_intmax Line Number
next: *mut vrttxt_row_blockpointer to next item [linked list]
Trait Implementations§
Source§impl Clone for vrttxt_row_block
impl Clone for vrttxt_row_block
Source§fn clone(&self) -> vrttxt_row_block
fn clone(&self) -> vrttxt_row_block
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_row_block
Auto Trait Implementations§
impl Freeze for vrttxt_row_block
impl RefUnwindSafe for vrttxt_row_block
impl !Send for vrttxt_row_block
impl !Sync for vrttxt_row_block
impl Unpin for vrttxt_row_block
impl UnwindSafe for vrttxt_row_block
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