pub struct LogStreamScanResult {
pub lines: Vec<LogLineScanResult>,
pub masked_log: String,
}Expand description
Result of scanning a log stream.
Fields§
§lines: Vec<LogLineScanResult>Findings grouped by log line.
masked_log: StringMasked log text.
Trait Implementations§
Source§impl Clone for LogStreamScanResult
impl Clone for LogStreamScanResult
Source§fn clone(&self) -> LogStreamScanResult
fn clone(&self) -> LogStreamScanResult
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 LogStreamScanResult
impl Debug for LogStreamScanResult
Source§impl<'de> Deserialize<'de> for LogStreamScanResult
impl<'de> Deserialize<'de> for LogStreamScanResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LogStreamScanResult
impl PartialEq for LogStreamScanResult
Source§fn eq(&self, other: &LogStreamScanResult) -> bool
fn eq(&self, other: &LogStreamScanResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LogStreamScanResult
impl Serialize for LogStreamScanResult
impl StructuralPartialEq for LogStreamScanResult
Auto Trait Implementations§
impl Freeze for LogStreamScanResult
impl RefUnwindSafe for LogStreamScanResult
impl Send for LogStreamScanResult
impl Sync for LogStreamScanResult
impl Unpin for LogStreamScanResult
impl UnsafeUnpin for LogStreamScanResult
impl UnwindSafe for LogStreamScanResult
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