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