pub struct RunErrorDetails {
pub compile_code: String,
pub message: String,
}
Expand description
Additional details for specific RunErrorCodes
, such as compilation errors.
Fields§
§compile_code: String
The code associated with the compilation error.
message: String
Detailed message describing the error.
Trait Implementations§
Source§impl Debug for RunErrorDetails
impl Debug for RunErrorDetails
Auto Trait Implementations§
impl Freeze for RunErrorDetails
impl RefUnwindSafe for RunErrorDetails
impl Send for RunErrorDetails
impl Sync for RunErrorDetails
impl Unpin for RunErrorDetails
impl UnwindSafe for RunErrorDetails
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