pub struct UncaughtThrowError { /* private fields */ }
Expand description
Ruby UncaughtThrowError
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 UncaughtThrowError
impl UncaughtThrowError
Sourcepub const fn new() -> Self
pub const fn new() -> Self
Construct a new, default UncaughtThrowError
Ruby exception.
This constructor sets the exception message to UncaughtThrowError
.
§Examples
let exception = UncaughtThrowError::new();
assert_eq!(exception.message(), b"UncaughtThrowError");
Sourcepub const fn with_message(message: &'static str) -> Self
pub const fn with_message(message: &'static str) -> Self
Construct a new, UncaughtThrowError
Ruby exception with the given
message.
§Examples
let exception = UncaughtThrowError::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 = UncaughtThrowError::new();
assert_eq!(exception.message(), b"UncaughtThrowError");
let exception = UncaughtThrowError::from("something went wrong");
assert_eq!(exception.message(), b"something went wrong");
Trait Implementations§
Source§impl Clone for UncaughtThrowError
impl Clone for UncaughtThrowError
Source§fn clone(&self) -> UncaughtThrowError
fn clone(&self) -> UncaughtThrowError
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 UncaughtThrowError
impl Debug for UncaughtThrowError
Source§impl Default for UncaughtThrowError
impl Default for UncaughtThrowError
Source§fn default() -> UncaughtThrowError
fn default() -> UncaughtThrowError
Returns the “default value” for a type. Read more
Source§impl Display for UncaughtThrowError
impl Display for UncaughtThrowError
Source§impl Error for UncaughtThrowError
impl Error for UncaughtThrowError
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 UncaughtThrowError
impl From<&'static [u8]> for UncaughtThrowError
Source§impl From<&'static str> for UncaughtThrowError
impl From<&'static str> for UncaughtThrowError
Source§impl From<String> for UncaughtThrowError
impl From<String> for UncaughtThrowError
Source§impl Hash for UncaughtThrowError
impl Hash for UncaughtThrowError
Source§impl Ord for UncaughtThrowError
impl Ord for UncaughtThrowError
Source§fn cmp(&self, other: &UncaughtThrowError) -> Ordering
fn cmp(&self, other: &UncaughtThrowError) -> 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 UncaughtThrowError
impl PartialEq for UncaughtThrowError
Source§impl PartialOrd for UncaughtThrowError
impl PartialOrd for UncaughtThrowError
Source§impl RubyException for UncaughtThrowError
impl RubyException for UncaughtThrowError
impl Eq for UncaughtThrowError
impl StructuralPartialEq for UncaughtThrowError
Auto Trait Implementations§
impl Freeze for UncaughtThrowError
impl RefUnwindSafe for UncaughtThrowError
impl Send for UncaughtThrowError
impl Sync for UncaughtThrowError
impl Unpin for UncaughtThrowError
impl UnwindSafe for UncaughtThrowError
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