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