pub struct ReconstructError {
pub issues: Vec<ReconstructIssue>,
}Expand description
All reconstruction failures for one program, in deterministic arena order. The emitter never returns partial output: a non-empty issue list means no OPY was produced.
Fields§
§issues: Vec<ReconstructIssue>Trait Implementations§
Source§impl Clone for ReconstructError
impl Clone for ReconstructError
Source§fn clone(&self) -> ReconstructError
fn clone(&self) -> ReconstructError
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 ReconstructError
impl Debug for ReconstructError
Source§impl Display for ReconstructError
impl Display for ReconstructError
impl Eq for ReconstructError
Source§impl Error for ReconstructError
impl Error for ReconstructError
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()
Source§impl PartialEq for ReconstructError
impl PartialEq for ReconstructError
impl StructuralPartialEq for ReconstructError
Auto Trait Implementations§
impl Freeze for ReconstructError
impl RefUnwindSafe for ReconstructError
impl Send for ReconstructError
impl Sync for ReconstructError
impl Unpin for ReconstructError
impl UnsafeUnpin for ReconstructError
impl UnwindSafe for ReconstructError
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