pub struct Fail(pub String);
Expand description
Fail structure
use kern::{Fail, Result};
fn do_something() -> Result<()> {
let err = Fail::new("This is an error");
Fail::from(err)
}
println!("{}", do_something().unwrap_err());
Tuple Fields§
§0: String
Implementations§
Trait Implementations§
Source§impl Error for Fail
std::error::Error implementation for Fail
impl Error for Fail
std::error::Error implementation for Fail
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
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 Ord for Fail
impl Ord for Fail
Source§impl PartialOrd for Fail
impl PartialOrd for Fail
impl Eq for Fail
impl StructuralPartialEq for Fail
Auto Trait Implementations§
impl Freeze for Fail
impl RefUnwindSafe for Fail
impl Send for Fail
impl Sync for Fail
impl Unpin for Fail
impl UnwindSafe for Fail
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