pub struct RexxDiagnostic {
pub error: RexxError,
pub location: Option<SourceLoc>,
pub detail: Option<String>,
}Expand description
A REXX runtime/parse error with location and context.
Fields§
§error: RexxError§location: Option<SourceLoc>§detail: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for RexxDiagnostic
impl Clone for RexxDiagnostic
Source§fn clone(&self) -> RexxDiagnostic
fn clone(&self) -> RexxDiagnostic
Returns a duplicate of the value. Read more
1.0.0 · 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 RexxDiagnostic
impl Debug for RexxDiagnostic
Source§impl Display for RexxDiagnostic
impl Display for RexxDiagnostic
Source§impl Error for RexxDiagnostic
impl Error for RexxDiagnostic
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for RexxDiagnostic
impl RefUnwindSafe for RexxDiagnostic
impl Send for RexxDiagnostic
impl Sync for RexxDiagnostic
impl Unpin for RexxDiagnostic
impl UnsafeUnpin for RexxDiagnostic
impl UnwindSafe for RexxDiagnostic
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