pub struct HermesReport {
pub written: Vec<ArtifactFidelity>,
pub refused: Vec<Refusal>,
}Expand description
What a Hermes decompile did.
Fields§
§written: Vec<ArtifactFidelity>Every artifact written, with its tier.
refused: Vec<Refusal>Every write refused.
Trait Implementations§
Source§impl Clone for HermesReport
impl Clone for HermesReport
Source§fn clone(&self) -> HermesReport
fn clone(&self) -> HermesReport
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 HermesReport
impl Debug for HermesReport
Source§impl Default for HermesReport
impl Default for HermesReport
Source§fn default() -> HermesReport
fn default() -> HermesReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for HermesReport
impl RefUnwindSafe for HermesReport
impl Send for HermesReport
impl Sync for HermesReport
impl Unpin for HermesReport
impl UnsafeUnpin for HermesReport
impl UnwindSafe for HermesReport
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