pub struct InterpreterExtractError { /* private fields */ }
Expand description
Failed to extract Artichoke interpreter at an FFI boundary.
Implementations§
Trait Implementations§
Source§impl Clone for InterpreterExtractError
impl Clone for InterpreterExtractError
Source§fn clone(&self) -> InterpreterExtractError
fn clone(&self) -> InterpreterExtractError
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 InterpreterExtractError
impl Debug for InterpreterExtractError
Source§impl Default for InterpreterExtractError
impl Default for InterpreterExtractError
Source§fn default() -> InterpreterExtractError
fn default() -> InterpreterExtractError
Returns the “default value” for a type. Read more
Source§impl Display for InterpreterExtractError
impl Display for InterpreterExtractError
Source§impl Error for InterpreterExtractError
impl Error for InterpreterExtractError
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<InterpreterExtractError> for Error
impl From<InterpreterExtractError> for Error
Source§fn from(exception: InterpreterExtractError) -> Self
fn from(exception: InterpreterExtractError) -> Self
Converts to this type from the input type.
Source§impl Hash for InterpreterExtractError
impl Hash for InterpreterExtractError
Source§impl Ord for InterpreterExtractError
impl Ord for InterpreterExtractError
Source§fn cmp(&self, other: &InterpreterExtractError) -> Ordering
fn cmp(&self, other: &InterpreterExtractError) -> 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 InterpreterExtractError
impl PartialEq for InterpreterExtractError
Source§impl PartialOrd for InterpreterExtractError
impl PartialOrd for InterpreterExtractError
Source§impl RubyException for InterpreterExtractError
impl RubyException for InterpreterExtractError
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 Copy for InterpreterExtractError
impl Eq for InterpreterExtractError
impl StructuralPartialEq for InterpreterExtractError
Auto Trait Implementations§
impl Freeze for InterpreterExtractError
impl RefUnwindSafe for InterpreterExtractError
impl Send for InterpreterExtractError
impl Sync for InterpreterExtractError
impl Unpin for InterpreterExtractError
impl UnwindSafe for InterpreterExtractError
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