#[non_exhaustive]pub struct Manifest {
pub tfparser_version: String,
pub schema_major: u32,
pub schema_minor: u32,
pub generated_at_ms: i64,
pub workspace_root: String,
pub command_line: String,
pub files: Vec<ManifestFile>,
}Expand description
Top-level manifest structure.
Wire format is canonical JSON with stable key order. Field names are
snake_case for downstream tooling compatibility — both consumers
(CLI scripts, security audits) parse with jq.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.tfparser_version: Stringtfparser-core semver.
schema_major: u32Parquet schema major.
schema_minor: u32Parquet schema minor.
generated_at_ms: i64Timestamp the manifest was produced, ms since UNIX epoch (UTC).
workspace_root: StringWorkspace root the parse ran against (absolute, canonical).
command_line: StringVerbatim CLI command line (or empty when the library was used directly).
files: Vec<ManifestFile>One entry per file the run produced.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Manifest
impl<'de> Deserialize<'de> for Manifest
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
impl Eq for Manifest
impl StructuralPartialEq for Manifest
Auto Trait Implementations§
impl Freeze for Manifest
impl RefUnwindSafe for Manifest
impl Send for Manifest
impl Sync for Manifest
impl Unpin for Manifest
impl UnsafeUnpin for Manifest
impl UnwindSafe for Manifest
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.