Enum re_analytics::cli::CliError
source · pub enum CliError {
Config(ConfigError),
Analytics(AnalyticsError),
Io(Error),
Serde(Error),
}
Variants§
Trait Implementations§
source§impl Error for CliError
impl Error for CliError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<AnalyticsError> for CliError
impl From<AnalyticsError> for CliError
source§fn from(source: AnalyticsError) -> Self
fn from(source: AnalyticsError) -> Self
Converts to this type from the input type.
source§impl From<ConfigError> for CliError
impl From<ConfigError> for CliError
source§fn from(source: ConfigError) -> Self
fn from(source: ConfigError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CliError
impl !RefUnwindSafe for CliError
impl Send for CliError
impl Sync for CliError
impl Unpin for CliError
impl !UnwindSafe for CliError
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