pub struct RunTerminalError {
pub code: String,
pub message: String,
}Expand description
Product-neutral diagnostic retained with a terminal durable run.
Fields§
§code: StringStable snake_case category chosen by the producing boundary.
message: StringSanitized diagnostic suitable for durable retrieval.
Implementations§
Trait Implementations§
Source§impl Clone for RunTerminalError
impl Clone for RunTerminalError
Source§fn clone(&self) -> RunTerminalError
fn clone(&self) -> RunTerminalError
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 RunTerminalError
impl Debug for RunTerminalError
Source§impl<'de> Deserialize<'de> for RunTerminalError
impl<'de> Deserialize<'de> for RunTerminalError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for RunTerminalError
Source§impl PartialEq for RunTerminalError
impl PartialEq for RunTerminalError
Source§impl Serialize for RunTerminalError
impl Serialize for RunTerminalError
impl StructuralPartialEq for RunTerminalError
Auto Trait Implementations§
impl Freeze for RunTerminalError
impl RefUnwindSafe for RunTerminalError
impl Send for RunTerminalError
impl Sync for RunTerminalError
impl Unpin for RunTerminalError
impl UnsafeUnpin for RunTerminalError
impl UnwindSafe for RunTerminalError
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