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