pub struct ReplayAuditInput {
pub journal_lane: String,
pub journal_path: String,
pub last_n: u64,
pub scanned_records: u64,
pub selected_bytes: u64,
pub sample_sha256: Vec<String>,
}Expand description
Replay input summary.
Fields§
§journal_lane: StringJournal lane name selected.
journal_path: StringJournal backing file path used.
last_n: u64Requested number of records (last N).
scanned_records: u64Total records scanned from the journal.
selected_bytes: u64Total bytes across the selected records.
sample_sha256: Vec<String>SHA-256 hashes of the first few selected records (for operator sanity checks).
Trait Implementations§
Source§impl Clone for ReplayAuditInput
impl Clone for ReplayAuditInput
Source§fn clone(&self) -> ReplayAuditInput
fn clone(&self) -> ReplayAuditInput
Returns a duplicate of the value. Read more
1.0.0 · 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 ReplayAuditInput
impl Debug for ReplayAuditInput
Source§impl<'de> Deserialize<'de> for ReplayAuditInput
impl<'de> Deserialize<'de> for ReplayAuditInput
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 ReplayAuditInput
impl PartialEq for ReplayAuditInput
Source§impl Serialize for ReplayAuditInput
impl Serialize for ReplayAuditInput
impl Eq for ReplayAuditInput
impl StructuralPartialEq for ReplayAuditInput
Auto Trait Implementations§
impl Freeze for ReplayAuditInput
impl RefUnwindSafe for ReplayAuditInput
impl Send for ReplayAuditInput
impl Sync for ReplayAuditInput
impl Unpin for ReplayAuditInput
impl UnwindSafe for ReplayAuditInput
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