pub struct OpenclawReport {
pub written: Vec<ArtifactFidelity>,
pub refused: Vec<Refusal>,
pub notes: Vec<String>,
pub rows_byte: usize,
pub rows_emitted: usize,
}Expand description
What an OpenClaw decompile did.
Fields§
§written: Vec<ArtifactFidelity>Every artifact written, with its tier.
refused: Vec<Refusal>Every write refused, with the gate named.
notes: Vec<String>What a semantic write gave up.
rows_byte: usizeStore rows written back column for column vs re-encoded.
rows_emitted: usizeStore rows re-encoded.
Trait Implementations§
Source§impl Clone for OpenclawReport
impl Clone for OpenclawReport
Source§fn clone(&self) -> OpenclawReport
fn clone(&self) -> OpenclawReport
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 OpenclawReport
impl Debug for OpenclawReport
Source§impl Default for OpenclawReport
impl Default for OpenclawReport
Source§fn default() -> OpenclawReport
fn default() -> OpenclawReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OpenclawReport
impl RefUnwindSafe for OpenclawReport
impl Send for OpenclawReport
impl Sync for OpenclawReport
impl Unpin for OpenclawReport
impl UnsafeUnpin for OpenclawReport
impl UnwindSafe for OpenclawReport
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