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