Enum bookdata::cleaning::isbns::ParseResult
source · pub enum ParseResult {
Valid(Vec<ISBN>, String),
Ignored(String),
Unmatched(String),
}
Expand description
Result of parsing an ISBN string.
Variants§
Valid(Vec<ISBN>, String)
Vaid ISBNs, possibly with additional trailing text
Ignored(String)
An ignored string
Unmatched(String)
An unparsable string
Trait Implementations§
source§impl Debug for ParseResult
impl Debug for ParseResult
source§impl PartialEq for ParseResult
impl PartialEq for ParseResult
source§fn eq(&self, other: &ParseResult) -> bool
fn eq(&self, other: &ParseResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ParseResult
Auto Trait Implementations§
impl RefUnwindSafe for ParseResult
impl Send for ParseResult
impl Sync for ParseResult
impl Unpin for ParseResult
impl UnwindSafe for ParseResult
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