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)>
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 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 for SignalException
impl PartialEq for SignalException
Source§impl PartialOrd for SignalException
impl PartialOrd for SignalException
Source§impl RubyException for SignalException
impl RubyException for SignalException
Source§impl RubyException for SignalException
impl RubyException for SignalException
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 SignalException
impl StructuralPartialEq for SignalException
Auto Trait Implementations§
impl Freeze for SignalException
impl RefUnwindSafe for SignalException
impl Send for SignalException
impl Sync for SignalException
impl Unpin for SignalException
impl UnwindSafe for SignalException
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