pub struct GcRunError {
pub stage: GcRunStage,
pub message: String,
pub span: Option<Span>,
}Expand description
Parse, compile, or runtime failure returned by the established report API.
Fields§
§stage: GcRunStage§message: String§span: Option<Span>Trait Implementations§
Source§impl Clone for GcRunError
impl Clone for GcRunError
Source§fn clone(&self) -> GcRunError
fn clone(&self) -> GcRunError
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 GcRunError
impl Debug for GcRunError
impl Eq for GcRunError
Source§impl From<GcClassifiedRunError> for GcRunError
impl From<GcClassifiedRunError> for GcRunError
Source§fn from(error: GcClassifiedRunError) -> Self
fn from(error: GcClassifiedRunError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GcRunError
impl PartialEq for GcRunError
Source§impl Serialize for GcRunError
impl Serialize for GcRunError
impl StructuralPartialEq for GcRunError
Auto Trait Implementations§
impl Freeze for GcRunError
impl RefUnwindSafe for GcRunError
impl Send for GcRunError
impl Sync for GcRunError
impl Unpin for GcRunError
impl UnsafeUnpin for GcRunError
impl UnwindSafe for GcRunError
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