pub struct Filter<'a> {
pub parsed: bool,
/* private fields */
}
Fields§
§parsed: bool
Implementations§
Source§impl<'a> Filter<'a>
impl<'a> Filter<'a>
pub fn new(raw: &str) -> Filter<'_>
pub fn is_empty(&self) -> bool
pub fn total_col(self, total: usize) -> Self
pub fn total_col_of(self, path: &'a Path, sep: char, quote: char) -> Self
pub fn parse(self) -> Self
pub fn record_is_valid<T: AsRef<str>>(&self, row: &[T]) -> bool
pub fn record_valid_map<'b>( &self, row: &'b str, sep: char, quote: char, ) -> Option<(Option<&'b str>, Option<Vec<&'b str>>)>
pub fn excel_record_is_valid<T: AsRef<str>>(&self, row: &[T]) -> bool
Auto Trait Implementations§
impl<'a> Freeze for Filter<'a>
impl<'a> RefUnwindSafe for Filter<'a>
impl<'a> Send for Filter<'a>
impl<'a> Sync for Filter<'a>
impl<'a> Unpin for Filter<'a>
impl<'a> UnwindSafe for Filter<'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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more