pub struct AppErr(/* private fields */);Expand description
An error type used to pass an application-specific error through a library runtime.
Application callbacks can return this type for the Err() case in order
to allow application-defined errors to be passed back to the application
through a library runtime.
Implementations§
source§impl AppErr
impl AppErr
sourcepub fn new<E>(e: E) -> AppErr
pub fn new<E>(e: E) -> AppErr
Create a new application callback error object that can be converted back
into to its original type (as long as it is Any compatible).
use std::fmt;
use apperr::{AppErr, Blessed};
#[derive(Debug)]
enum MyErr {
Something(String)
}
impl fmt::Display for MyErr {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
MyErr::Something(s) => {
write!(f, "Some error; {}", s)
}
}
}
}
impl std::error::Error for MyErr { }
impl Blessed for MyErr { }
let apperr = AppErr::new(MyErr::Something("hello".into()));sourcepub fn is<T>(&self) -> boolwhere
T: Any,
pub fn is<T>(&self) -> boolwhere
T: Any,
Inspect error type wrapped by the AppErr.
use std::fmt;
use apperr::{AppErr, Blessed};
#[derive(Debug)]
enum MyErr {
Something(String)
}
impl fmt::Display for MyErr {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
MyErr::Something(s) => {
write!(f, "Some error; {}", s)
}
}
}
}
impl std::error::Error for MyErr { }
impl Blessed for MyErr { }
let apperr = AppErr::new(MyErr::Something("hello".into()));
assert!(apperr.is::<MyErr>());
assert_eq!(apperr.is::<String>(), false);sourcepub fn try_into_inner<E>(self) -> Result<E, AppErr>where
E: 'static,
pub fn try_into_inner<E>(self) -> Result<E, AppErr>where
E: 'static,
Attempt to unpack and cast the inner error type.
If it can’t be downcast to E, the AppErr will be returned back to the
caller in the Err() case.
use std::fmt;
use apperr::{AppErr, Blessed};
#[derive(Debug)]
enum MyErr {
Something(String)
}
impl fmt::Display for MyErr {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
MyErr::Something(s) => {
write!(f, "Some error; {}", s)
}
}
}
}
impl std::error::Error for MyErr { }
impl Blessed for MyErr { }
let apperr = AppErr::new(MyErr::Something("hello".into()));
let Ok(e) = apperr.try_into_inner::<MyErr>() else {
panic!("Unexpectedly not MyErr");
};sourcepub fn unwrap_inner<E>(self) -> Ewhere
E: 'static,
pub fn unwrap_inner<E>(self) -> Ewhere
E: 'static,
Unwrap application-specific error.
use std::fmt;
use apperr::{AppErr, Blessed};
#[derive(Debug)]
enum MyErr {
Something(String)
}
impl fmt::Display for MyErr {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
MyErr::Something(s) => {
write!(f, "Some error; {}", s)
}
}
}
}
impl std::error::Error for MyErr { }
impl Blessed for MyErr { }
let apperr = AppErr::new(MyErr::Something("hello".into()));
let MyErr::Something(e) = apperr.unwrap_inner::<MyErr>() else {
panic!("Unexpectedly not MyErr::Something");
};
assert_eq!(e, "hello");§Panic
Panics if the inner type is not castable to E.
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for AppErr
impl Send for AppErr
impl !Sync for AppErr
impl Unpin for AppErr
impl !UnwindSafe for AppErr
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> IntoCollection<T> for T
impl<T> IntoCollection<T> for T
§fn into_collection<A>(self) -> SmallVec<A>where
A: Array<Item = T>,
fn into_collection<A>(self) -> SmallVec<A>where
A: Array<Item = T>,
self into a collection.fn mapped<U, F, A>(self, f: F) -> SmallVec<A>where
F: FnMut(T) -> U,
A: Array<Item = U>,
§impl<T> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere
T: ?Sized,
§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self with the foreground set to
value.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red() and
green(), which have the same functionality but are
pithier.
§Example
Set foreground color to white using fg():
use yansi::{Paint, Color};
painted.fg(Color::White);Set foreground color to white using white().
use yansi::Paint;
painted.white();§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self with the background set to
value.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red() and
on_green(), which have the same functionality but
are pithier.
§Example
Set background color to red using fg():
use yansi::{Paint, Color};
painted.bg(Color::Red);Set background color to red using on_red().
use yansi::Paint;
painted.on_red();§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling [Attribute] value.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold() and
underline(), which have the same functionality
but are pithier.
§Example
Make text bold using attr():
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);Make text bold using using bold().
use yansi::Paint;
painted.bold();§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi [Quirk] value.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask() and
wrap(), which have the same functionality but are
pithier.
§Example
Enable wrapping using .quirk():
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);Enable wrapping using wrap().
use yansi::Paint;
painted.wrap();§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the [Condition] value
applies. Replaces any previous condition.
See the crate level docs for more details.
§Example
Enable styling painted only when both stdout and stderr are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);