pub struct ReportMetadata {
pub version: String,
pub timestamp: String,
pub deterministic: bool,
pub dry_run: bool,
pub strict: bool,
pub chunk_size: usize,
pub threads: Option<usize>,
pub secrets_file: Option<String>,
}Expand description
Tool metadata embedded in every report.
Fields§
§version: StringCrate / binary version (from Cargo.toml).
timestamp: StringISO-8601 timestamp when the run started.
deterministic: boolWhether --deterministic was used.
dry_run: boolWhether --dry-run was used.
strict: boolWhether --strict was used.
chunk_size: usizeChunk size in bytes (--chunk-size).
threads: Option<usize>Thread count (--threads), if specified.
secrets_file: Option<String>Path to the secrets file, if provided.
Trait Implementations§
Source§impl Clone for ReportMetadata
impl Clone for ReportMetadata
Source§fn clone(&self) -> ReportMetadata
fn clone(&self) -> ReportMetadata
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 ReportMetadata
impl Debug for ReportMetadata
Auto Trait Implementations§
impl Freeze for ReportMetadata
impl RefUnwindSafe for ReportMetadata
impl Send for ReportMetadata
impl Sync for ReportMetadata
impl Unpin for ReportMetadata
impl UnsafeUnpin for ReportMetadata
impl UnwindSafe for ReportMetadata
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more