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