pub struct LogAnalysis {
pub checks: Vec<Check>,
pub commands: Vec<CommandRecord>,
pub redacted_log: String,
pub mask_values: Vec<String>,
}Fields§
§checks: Vec<Check>§commands: Vec<CommandRecord>§redacted_log: String§mask_values: Vec<String>Trait Implementations§
Source§impl Clone for LogAnalysis
impl Clone for LogAnalysis
Source§fn clone(&self) -> LogAnalysis
fn clone(&self) -> LogAnalysis
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 moreAuto Trait Implementations§
impl Freeze for LogAnalysis
impl RefUnwindSafe for LogAnalysis
impl Send for LogAnalysis
impl Sync for LogAnalysis
impl Unpin for LogAnalysis
impl UnsafeUnpin for LogAnalysis
impl UnwindSafe for LogAnalysis
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