pub struct LogicTrace {
pub entries: Vec<TraceEntry>,
}Expand description
The complete audit trail for one governance evaluation.
Bounded to 64 entries on embedded targets. On std targets this can grow.
Fields§
§entries: Vec<TraceEntry>Implementations§
Trait Implementations§
Source§impl Clone for LogicTrace
impl Clone for LogicTrace
Source§fn clone(&self) -> LogicTrace
fn clone(&self) -> LogicTrace
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 LogicTrace
impl Debug for LogicTrace
Auto Trait Implementations§
impl Freeze for LogicTrace
impl RefUnwindSafe for LogicTrace
impl Send for LogicTrace
impl Sync for LogicTrace
impl Unpin for LogicTrace
impl UnsafeUnpin for LogicTrace
impl UnwindSafe for LogicTrace
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