pub struct GcRuntimeError {
pub message: String,
pub span: Option<Span>,
}Expand description
Runtime failure returned by the established VM and runner APIs.
Fields§
§message: String§span: Option<Span>Trait Implementations§
Source§impl Clone for GcRuntimeError
impl Clone for GcRuntimeError
Source§fn clone(&self) -> GcRuntimeError
fn clone(&self) -> GcRuntimeError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GcRuntimeError
impl Debug for GcRuntimeError
impl Eq for GcRuntimeError
Source§impl From<GcClassifiedRuntimeError> for GcRuntimeError
impl From<GcClassifiedRuntimeError> for GcRuntimeError
Source§fn from(error: GcClassifiedRuntimeError) -> Self
fn from(error: GcClassifiedRuntimeError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GcRuntimeError
impl PartialEq for GcRuntimeError
Source§impl Serialize for GcRuntimeError
impl Serialize for GcRuntimeError
impl StructuralPartialEq for GcRuntimeError
Auto Trait Implementations§
impl Freeze for GcRuntimeError
impl RefUnwindSafe for GcRuntimeError
impl Send for GcRuntimeError
impl Sync for GcRuntimeError
impl Unpin for GcRuntimeError
impl UnsafeUnpin for GcRuntimeError
impl UnwindSafe for GcRuntimeError
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