Struct artichoke::prelude::FloatDomainError
source · pub struct FloatDomainError { /* private fields */ }
Expand description
Ruby FloatDomainError
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 FloatDomainError
impl FloatDomainError
sourcepub const fn new() -> FloatDomainError
pub const fn new() -> FloatDomainError
Construct a new, default FloatDomainError
Ruby exception.
This constructor sets the exception message to FloatDomainError
.
Examples
let exception = FloatDomainError::new();
assert_eq!(exception.message(), b"FloatDomainError");
sourcepub const fn with_message(message: &'static str) -> FloatDomainError
pub const fn with_message(message: &'static str) -> FloatDomainError
Construct a new, FloatDomainError
Ruby exception with the given
message.
Examples
let exception = FloatDomainError::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 = FloatDomainError::new();
assert_eq!(exception.message(), b"FloatDomainError");
let exception = FloatDomainError::from("something went wrong");
assert_eq!(exception.message(), b"something went wrong");
Trait Implementations§
source§impl Clone for FloatDomainError
impl Clone for FloatDomainError
source§fn clone(&self) -> FloatDomainError
fn clone(&self) -> FloatDomainError
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 FloatDomainError
impl Debug for FloatDomainError
source§impl Default for FloatDomainError
impl Default for FloatDomainError
source§fn default() -> FloatDomainError
fn default() -> FloatDomainError
Returns the “default value” for a type. Read more
source§impl Display for FloatDomainError
impl Display for FloatDomainError
source§impl Error for FloatDomainError
impl Error for FloatDomainError
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 FloatDomainError
impl From<&'static [u8]> for FloatDomainError
source§fn from(message: &'static [u8]) -> FloatDomainError
fn from(message: &'static [u8]) -> FloatDomainError
Converts to this type from the input type.
source§impl From<&'static str> for FloatDomainError
impl From<&'static str> for FloatDomainError
source§fn from(message: &'static str) -> FloatDomainError
fn from(message: &'static str) -> FloatDomainError
Converts to this type from the input type.
source§impl From<FloatDomainError> for Error
impl From<FloatDomainError> for Error
source§fn from(exception: FloatDomainError) -> Error
fn from(exception: FloatDomainError) -> Error
Converts to this type from the input type.
source§impl From<String> for FloatDomainError
impl From<String> for FloatDomainError
source§fn from(message: String) -> FloatDomainError
fn from(message: String) -> FloatDomainError
Converts to this type from the input type.
source§impl Hash for FloatDomainError
impl Hash for FloatDomainError
source§impl Ord for FloatDomainError
impl Ord for FloatDomainError
source§fn cmp(&self, other: &FloatDomainError) -> Ordering
fn cmp(&self, other: &FloatDomainError) -> 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<FloatDomainError> for FloatDomainError
impl PartialEq<FloatDomainError> for FloatDomainError
source§fn eq(&self, other: &FloatDomainError) -> bool
fn eq(&self, other: &FloatDomainError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<FloatDomainError> for FloatDomainError
impl PartialOrd<FloatDomainError> for FloatDomainError
source§fn partial_cmp(&self, other: &FloatDomainError) -> Option<Ordering>
fn partial_cmp(&self, other: &FloatDomainError) -> 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