pub enum LibraryError {
AnyString(String),
UnsupportedVersion(i32),
UnsupportedBuild(i32, i32),
StickfigureError(StickfigureError),
}
Variants§
AnyString(String)
UnsupportedVersion(i32)
UnsupportedBuild(i32, i32)
StickfigureError(StickfigureError)
Trait Implementations§
Source§impl Debug for LibraryError
impl Debug for LibraryError
Source§impl Display for LibraryError
impl Display for LibraryError
Source§impl Error for LibraryError
impl Error for LibraryError
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 From<StickfigureError> for LibraryError
impl From<StickfigureError> for LibraryError
Source§fn from(source: StickfigureError) -> Self
fn from(source: StickfigureError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LibraryError
impl RefUnwindSafe for LibraryError
impl Send for LibraryError
impl Sync for LibraryError
impl Unpin for LibraryError
impl UnwindSafe for LibraryError
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