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() -> Self
 
pub const fn new() -> Self
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) -> Self
 
pub const fn with_message(message: &'static str) -> Self
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 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 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)>
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 FloatDomainError
 
impl From<&'static [u8]> for FloatDomainError
Source§impl From<&'static str> for FloatDomainError
 
impl From<&'static str> for FloatDomainError
Source§impl From<String> for FloatDomainError
 
impl From<String> 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 for FloatDomainError
 
impl PartialEq for FloatDomainError
Source§impl PartialOrd for FloatDomainError
 
impl PartialOrd for FloatDomainError
Source§impl RubyException for FloatDomainError
 
impl RubyException for FloatDomainError
impl Eq for FloatDomainError
impl StructuralPartialEq for FloatDomainError
Auto Trait Implementations§
impl Freeze for FloatDomainError
impl RefUnwindSafe for FloatDomainError
impl Send for FloatDomainError
impl Sync for FloatDomainError
impl Unpin for FloatDomainError
impl UnwindSafe for FloatDomainError
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