pub struct ZeroCopyReaderBuilder { /* private fields */ }Implementations§
Source§impl ZeroCopyReaderBuilder
impl ZeroCopyReaderBuilder
pub fn new() -> Self
pub fn with_capacity(capacity: usize) -> Self
pub fn delimiter(&mut self, delimiter: u8) -> &mut Self
pub fn quote(&mut self, quote: u8) -> &mut Self
pub fn buffer_capacity(&mut self, capacity: usize) -> &mut Self
pub fn flexible(&mut self, yes: bool) -> &mut Self
pub fn has_headers(&mut self, yes: bool) -> &mut Self
pub fn to_splitter_builder(&self) -> SplitterBuilder
pub fn from_reader<R: Read>(&self, reader: R) -> ZeroCopyReader<R>
Trait Implementations§
Source§impl Clone for ZeroCopyReaderBuilder
impl Clone for ZeroCopyReaderBuilder
Source§fn clone(&self) -> ZeroCopyReaderBuilder
fn clone(&self) -> ZeroCopyReaderBuilder
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 moreAuto Trait Implementations§
impl Freeze for ZeroCopyReaderBuilder
impl RefUnwindSafe for ZeroCopyReaderBuilder
impl Send for ZeroCopyReaderBuilder
impl Sync for ZeroCopyReaderBuilder
impl Unpin for ZeroCopyReaderBuilder
impl UnwindSafe for ZeroCopyReaderBuilder
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