pub enum LaibraryError {
Io(Error),
Parse(String),
UnsupportedLanguage(String),
InvalidPath(String),
}Expand description
Custom error type for laibrary operations
Variants§
Io(Error)
I/O related errors
Parse(String)
Parsing related errors
UnsupportedLanguage(String)
Unsupported language errors
InvalidPath(String)
Invalid path errors
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LaibraryError
impl !RefUnwindSafe for LaibraryError
impl Send for LaibraryError
impl Sync for LaibraryError
impl Unpin for LaibraryError
impl !UnwindSafe for LaibraryError
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