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