Struct spinoso_exception::Fatal
source · 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)>
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 PartialEq<Fatal> for Fatal
impl PartialEq<Fatal> for Fatal
source§impl PartialOrd<Fatal> for Fatal
impl PartialOrd<Fatal> for Fatal
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl RubyException for Fatal
impl RubyException for Fatal
impl Eq for Fatal
impl StructuralEq for Fatal
impl StructuralPartialEq for Fatal
Auto Trait Implementations§
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