Struct artichoke::prelude::NoMethodError
source · 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() -> NoMethodError
pub const fn new() -> NoMethodError
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) -> NoMethodError
pub const fn with_message(message: &'static str) -> NoMethodError
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)>
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§fn from(message: &'static [u8]) -> NoMethodError
fn from(message: &'static [u8]) -> NoMethodError
Converts to this type from the input type.
source§impl From<&'static str> for NoMethodError
impl From<&'static str> for NoMethodError
source§fn from(message: &'static str) -> NoMethodError
fn from(message: &'static str) -> NoMethodError
Converts to this type from the input type.
source§impl From<NoMethodError> for Error
impl From<NoMethodError> for Error
source§fn from(exception: NoMethodError) -> Error
fn from(exception: NoMethodError) -> Error
Converts to this type from the input type.
source§impl From<String> for NoMethodError
impl From<String> for NoMethodError
source§fn from(message: String) -> NoMethodError
fn from(message: String) -> NoMethodError
Converts to this type from the input type.
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<NoMethodError> for NoMethodError
impl PartialEq<NoMethodError> for NoMethodError
source§fn eq(&self, other: &NoMethodError) -> bool
fn eq(&self, other: &NoMethodError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<NoMethodError> for NoMethodError
impl PartialOrd<NoMethodError> for NoMethodError
source§fn partial_cmp(&self, other: &NoMethodError) -> Option<Ordering>
fn partial_cmp(&self, other: &NoMethodError) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more