pub struct Fatal { /* private fields */ }
Expand description
Ruby fatal
error type.
Descendants of class Exception
are used to communicate between
Kernel#raise
and rescue
statements in begin ... end
blocks.
Exception objects carry information about the exception – its type (the
exception’s class name), an optional descriptive string, and optional
traceback information. Exception
subclasses may add additional information
like NameError#name
.
Implementations§
Source§impl Fatal
impl Fatal
Sourcepub const fn new() -> Self
pub const fn new() -> Self
Construct a new, default fatal
Ruby exception.
This constructor sets the exception message to fatal
.
§Examples
let exception = Fatal::new();
assert_eq!(exception.message(), b"fatal");
Sourcepub const fn with_message(message: &'static str) -> Self
pub const fn with_message(message: &'static str) -> Self
Construct a new, fatal
Ruby exception with the given
message.
§Examples
let exception = Fatal::with_message("an error occurred");
assert_eq!(exception.message(), b"an error occurred");
Trait Implementations§
Source§impl Error for Fatal
impl Error for Fatal
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 Fatal
impl Ord for Fatal
Source§impl PartialOrd for Fatal
impl PartialOrd for Fatal
Source§impl RubyException for Fatal
impl RubyException for Fatal
impl Eq for Fatal
impl StructuralPartialEq for Fatal
Auto Trait Implementations§
impl Freeze for Fatal
impl RefUnwindSafe for Fatal
impl Send for Fatal
impl Sync for Fatal
impl Unpin for Fatal
impl UnwindSafe for Fatal
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