pub enum BurnCloudError {
ModelNotFound(String),
DownloadFailed(String),
ServerError(String),
ConfigError(String),
IoError(Error),
}Variants§
ModelNotFound(String)
DownloadFailed(String)
ServerError(String)
ConfigError(String)
IoError(Error)
Trait Implementations§
Source§impl Debug for BurnCloudError
impl Debug for BurnCloudError
Source§impl Display for BurnCloudError
impl Display for BurnCloudError
Source§impl Error for BurnCloudError
impl Error for BurnCloudError
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()
Auto Trait Implementations§
impl Freeze for BurnCloudError
impl !RefUnwindSafe for BurnCloudError
impl Send for BurnCloudError
impl Sync for BurnCloudError
impl Unpin for BurnCloudError
impl UnsafeUnpin for BurnCloudError
impl !UnwindSafe for BurnCloudError
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