Struct artichoke_backend::convert::UnboxRubyError
source · [−]Expand description
Failed to convert from boxed Ruby value to a Rust type.
Fields
from: Ruby
into: Rust
Implementations
Trait Implementations
sourceimpl Clone for UnboxRubyError
impl Clone for UnboxRubyError
sourcefn clone(&self) -> UnboxRubyError
fn clone(&self) -> UnboxRubyError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for UnboxRubyError
impl Debug for UnboxRubyError
sourceimpl Display for UnboxRubyError
impl Display for UnboxRubyError
sourceimpl Error for UnboxRubyError
impl Error for UnboxRubyError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
sourceimpl From<UnboxRubyError> for Error
impl From<UnboxRubyError> for Error
sourcefn from(exception: UnboxRubyError) -> Self
fn from(exception: UnboxRubyError) -> Self
Converts to this type from the input type.
sourceimpl From<UnboxRubyError> for Box<dyn RubyException>
impl From<UnboxRubyError> for Box<dyn RubyException>
sourcefn from(exception: UnboxRubyError) -> Box<dyn RubyException>
fn from(exception: UnboxRubyError) -> Box<dyn RubyException>
Converts to this type from the input type.
sourceimpl Hash for UnboxRubyError
impl Hash for UnboxRubyError
sourceimpl Ord for UnboxRubyError
impl Ord for UnboxRubyError
sourceimpl PartialEq<UnboxRubyError> for UnboxRubyError
impl PartialEq<UnboxRubyError> for UnboxRubyError
sourcefn eq(&self, other: &UnboxRubyError) -> bool
fn eq(&self, other: &UnboxRubyError) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &UnboxRubyError) -> bool
fn ne(&self, other: &UnboxRubyError) -> bool
This method tests for !=
.
sourceimpl PartialOrd<UnboxRubyError> for UnboxRubyError
impl PartialOrd<UnboxRubyError> for UnboxRubyError
sourcefn partial_cmp(&self, other: &UnboxRubyError) -> Option<Ordering>
fn partial_cmp(&self, other: &UnboxRubyError) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn 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 more
sourceimpl RubyException for UnboxRubyError
impl RubyException for UnboxRubyError
sourcefn 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.
sourcefn 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 UnboxRubyError
impl Eq for UnboxRubyError
impl StructuralEq for UnboxRubyError
impl StructuralPartialEq for UnboxRubyError
Auto Trait Implementations
impl RefUnwindSafe for UnboxRubyError
impl Send for UnboxRubyError
impl Sync for UnboxRubyError
impl Unpin for UnboxRubyError
impl UnwindSafe for UnboxRubyError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more