pub struct RtError {
pub ball: TermBuf,
pub message: String,
pub uncatchable: bool,
}Expand description
A runtime error in flight. The ball is a relocatable copy (it must survive heap rewinding on the way to a catch frame); the message is its v1-format rendering for top-level output (exit code 3).
Fields§
§ball: TermBuf§message: String§uncatchable: boolAuto Trait Implementations§
impl Freeze for RtError
impl RefUnwindSafe for RtError
impl Send for RtError
impl Sync for RtError
impl Unpin for RtError
impl UnsafeUnpin for RtError
impl UnwindSafe for RtError
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