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