pub struct SystemExit { /* private fields */ }
Expand description
Ruby SystemExit
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 SystemExit
impl SystemExit
Sourcepub const fn new() -> SystemExit
pub const fn new() -> SystemExit
Construct a new, default SystemExit
Ruby exception.
This constructor sets the exception message to SystemExit
.
§Examples
let exception = SystemExit::new();
assert_eq!(exception.message(), b"SystemExit");
Sourcepub const fn with_message(message: &'static str) -> SystemExit
pub const fn with_message(message: &'static str) -> SystemExit
Construct a new, SystemExit
Ruby exception with the given
message.
§Examples
let exception = SystemExit::with_message("an error occurred");
assert_eq!(exception.message(), b"an error occurred");
Sourcepub fn message(&self) -> &[u8] ⓘ
pub fn message(&self) -> &[u8] ⓘ
Return the message this Ruby exception was constructed with.
§Examples
let exception = SystemExit::new();
assert_eq!(exception.message(), b"SystemExit");
let exception = SystemExit::from("something went wrong");
assert_eq!(exception.message(), b"something went wrong");
Trait Implementations§
Source§impl Clone for SystemExit
impl Clone for SystemExit
Source§fn clone(&self) -> SystemExit
fn clone(&self) -> SystemExit
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SystemExit
impl Debug for SystemExit
Source§impl Default for SystemExit
impl Default for SystemExit
Source§fn default() -> SystemExit
fn default() -> SystemExit
Returns the “default value” for a type. Read more
Source§impl Display for SystemExit
impl Display for SystemExit
Source§impl Error for SystemExit
impl Error for SystemExit
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 From<&'static [u8]> for SystemExit
impl From<&'static [u8]> for SystemExit
Source§fn from(message: &'static [u8]) -> SystemExit
fn from(message: &'static [u8]) -> SystemExit
Converts to this type from the input type.
Source§impl From<&'static str> for SystemExit
impl From<&'static str> for SystemExit
Source§fn from(message: &'static str) -> SystemExit
fn from(message: &'static str) -> SystemExit
Converts to this type from the input type.
Source§impl From<String> for SystemExit
impl From<String> for SystemExit
Source§fn from(message: String) -> SystemExit
fn from(message: String) -> SystemExit
Converts to this type from the input type.
Source§impl From<SystemExit> for Error
impl From<SystemExit> for Error
Source§fn from(exception: SystemExit) -> Error
fn from(exception: SystemExit) -> Error
Converts to this type from the input type.
Source§impl Hash for SystemExit
impl Hash for SystemExit
Source§impl Ord for SystemExit
impl Ord for SystemExit
Source§fn cmp(&self, other: &SystemExit) -> Ordering
fn cmp(&self, other: &SystemExit) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SystemExit
impl PartialEq for SystemExit
Source§impl PartialOrd for SystemExit
impl PartialOrd for SystemExit
Source§impl RubyException for SystemExit
impl RubyException for SystemExit
Source§impl RubyException for SystemExit
impl RubyException for SystemExit
Source§fn vm_backtrace(&self, interp: &mut Artichoke) -> Option<Vec<Vec<u8>>>
fn vm_backtrace(&self, interp: &mut Artichoke) -> Option<Vec<Vec<u8>>>
Optional backtrace specified by a
Vec
of frames.Source§fn as_mrb_value(&self, interp: &mut Artichoke) -> Option<mrb_value>
fn as_mrb_value(&self, interp: &mut Artichoke) -> Option<mrb_value>
Return a raise-able
sys::mrb_value
.impl Eq for SystemExit
impl StructuralPartialEq for SystemExit
Auto Trait Implementations§
impl Freeze for SystemExit
impl RefUnwindSafe for SystemExit
impl Send for SystemExit
impl Sync for SystemExit
impl Unpin for SystemExit
impl UnwindSafe for SystemExit
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