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