pub struct Row<'mmap> { /* private fields */ }Implementations§
Source§impl<'mmap> Row<'mmap>
impl<'mmap> Row<'mmap>
Sourcepub fn new(
slice: &'mmap [u8],
field_separator: u8,
string_delimiter: u8,
force_mem_cacher: bool,
) -> Self
pub fn new( slice: &'mmap [u8], field_separator: u8, string_delimiter: u8, force_mem_cacher: bool, ) -> Self
§Constructor
- Make a new instance of
Rowstruct.
Sourcepub fn next_field(&mut self) -> Option<Field<'mmap>>
pub fn next_field(&mut self) -> Option<Field<'mmap>>
Trait Implementations§
Auto Trait Implementations§
impl<'mmap> Freeze for Row<'mmap>
impl<'mmap> RefUnwindSafe for Row<'mmap>
impl<'mmap> Send for Row<'mmap>
impl<'mmap> Sync for Row<'mmap>
impl<'mmap> Unpin for Row<'mmap>
impl<'mmap> UnwindSafe for Row<'mmap>
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