pub struct TerminationResult {
pub ok: bool,
pub diagnostics: Vec<TerminationDiagnostic>,
}Expand description
Outcome of a termination check.
Fields§
§ok: bool§diagnostics: Vec<TerminationDiagnostic>Trait Implementations§
Source§impl Clone for TerminationResult
impl Clone for TerminationResult
Source§fn clone(&self) -> TerminationResult
fn clone(&self) -> TerminationResult
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 TerminationResult
impl Debug for TerminationResult
Source§impl PartialEq for TerminationResult
impl PartialEq for TerminationResult
impl Eq for TerminationResult
impl StructuralPartialEq for TerminationResult
Auto Trait Implementations§
impl Freeze for TerminationResult
impl RefUnwindSafe for TerminationResult
impl Send for TerminationResult
impl Sync for TerminationResult
impl Unpin for TerminationResult
impl UnsafeUnpin for TerminationResult
impl UnwindSafe for TerminationResult
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