pub enum BibtexError {
Parsing(String),
StringVariableNotFound(String),
}Variants§
Implementations§
Source§impl BibtexError
impl BibtexError
pub fn with_context( input: &str, err: Err<VerboseError<LocatedSpan<&'_ str, TracableInfo>>>, ) -> BibtexError
Trait Implementations§
Source§impl Debug for BibtexError
impl Debug for BibtexError
Source§impl Display for BibtexError
impl Display for BibtexError
Source§impl Error for BibtexError
impl Error for BibtexError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for BibtexError
impl PartialEq for BibtexError
impl Eq for BibtexError
impl StructuralPartialEq for BibtexError
Auto Trait Implementations§
impl Freeze for BibtexError
impl RefUnwindSafe for BibtexError
impl Send for BibtexError
impl Sync for BibtexError
impl Unpin for BibtexError
impl UnwindSafe for BibtexError
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