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