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