pub enum ObsidianError {
ParamError(String),
JsonError(Error),
FormError(FormError),
GeneralError(String),
NoneError,
}Expand description
Errors occurs in Obsidian framework
Variants§
Trait Implementations§
Source§impl Debug for ObsidianError
impl Debug for ObsidianError
Source§impl Display for ObsidianError
impl Display for ObsidianError
Source§impl Error for ObsidianError
impl Error for ObsidianError
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
1.30.0 · 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
Source§impl From<Error> for ObsidianError
impl From<Error> for ObsidianError
Auto Trait Implementations§
impl Freeze for ObsidianError
impl !RefUnwindSafe for ObsidianError
impl Send for ObsidianError
impl Sync for ObsidianError
impl Unpin for ObsidianError
impl !UnwindSafe for ObsidianError
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