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