pub struct RowData<'a> {
pub x1: i32,
pub x2: i32,
pub ptr: &'a [u8],
}Expand description
Row data returned by row() — a slice range and pointer into a row.
Fields§
§x1: i32§x2: i32§ptr: &'a [u8]Trait Implementations§
impl<'a> Copy for RowData<'a>
Auto Trait Implementations§
impl<'a> Freeze for RowData<'a>
impl<'a> RefUnwindSafe for RowData<'a>
impl<'a> Send for RowData<'a>
impl<'a> Sync for RowData<'a>
impl<'a> Unpin for RowData<'a>
impl<'a> UnwindSafe for RowData<'a>
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