Struct artichoke::prelude::SystemStackError
source · pub struct SystemStackError { /* private fields */ }
Expand description
Ruby SystemStackError
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 SystemStackError
impl SystemStackError
sourcepub const fn new() -> SystemStackError
pub const fn new() -> SystemStackError
Construct a new, default SystemStackError
Ruby exception.
This constructor sets the exception message to SystemStackError
.
Examples
let exception = SystemStackError::new();
assert_eq!(exception.message(), b"SystemStackError");
sourcepub const fn with_message(message: &'static str) -> SystemStackError
pub const fn with_message(message: &'static str) -> SystemStackError
Construct a new, SystemStackError
Ruby exception with the given
message.
Examples
let exception = SystemStackError::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 = SystemStackError::new();
assert_eq!(exception.message(), b"SystemStackError");
let exception = SystemStackError::from("something went wrong");
assert_eq!(exception.message(), b"something went wrong");
Trait Implementations§
source§impl Clone for SystemStackError
impl Clone for SystemStackError
source§fn clone(&self) -> SystemStackError
fn clone(&self) -> SystemStackError
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 SystemStackError
impl Debug for SystemStackError
source§impl Default for SystemStackError
impl Default for SystemStackError
source§fn default() -> SystemStackError
fn default() -> SystemStackError
Returns the “default value” for a type. Read more
source§impl Display for SystemStackError
impl Display for SystemStackError
source§impl Error for SystemStackError
impl Error for SystemStackError
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 From<&'static [u8]> for SystemStackError
impl From<&'static [u8]> for SystemStackError
source§fn from(message: &'static [u8]) -> SystemStackError
fn from(message: &'static [u8]) -> SystemStackError
Converts to this type from the input type.
source§impl From<&'static str> for SystemStackError
impl From<&'static str> for SystemStackError
source§fn from(message: &'static str) -> SystemStackError
fn from(message: &'static str) -> SystemStackError
Converts to this type from the input type.
source§impl From<String> for SystemStackError
impl From<String> for SystemStackError
source§fn from(message: String) -> SystemStackError
fn from(message: String) -> SystemStackError
Converts to this type from the input type.
source§impl From<SystemStackError> for Error
impl From<SystemStackError> for Error
source§fn from(exception: SystemStackError) -> Error
fn from(exception: SystemStackError) -> Error
Converts to this type from the input type.
source§impl Hash for SystemStackError
impl Hash for SystemStackError
source§impl Ord for SystemStackError
impl Ord for SystemStackError
source§fn cmp(&self, other: &SystemStackError) -> Ordering
fn cmp(&self, other: &SystemStackError) -> 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<SystemStackError> for SystemStackError
impl PartialEq<SystemStackError> for SystemStackError
source§fn eq(&self, other: &SystemStackError) -> bool
fn eq(&self, other: &SystemStackError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<SystemStackError> for SystemStackError
impl PartialOrd<SystemStackError> for SystemStackError
source§fn partial_cmp(&self, other: &SystemStackError) -> Option<Ordering>
fn partial_cmp(&self, other: &SystemStackError) -> Option<Ordering>
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 more