pub struct GenerationResult {
pub sds: SdsRoot,
pub findings: Vec<Finding>,
pub unresolved: Vec<UnresolvedField>,
pub provenance: Vec<FieldProvenance>,
pub evidence_summary: EvidenceSummary,
pub release_status: ReleaseStatus,
}Expand description
The full generation report: the official SDS draft plus everything
needed to understand its incompleteness. sds is the only part that
belongs in official_sds.json — findings/unresolved/provenance/
evidence_summary/release_status describe the draft, they are never
written into it (see tests::official_sds_json_has_no_report_keys).
Uses SdsRoot directly, not an aspirational DomainSds type — the
regulatory-profile/domain separation described in
docs/sdsforge-architecture.md doesn’t exist yet, and commit #9
deliberately returned the current MHLW-backed SdsRoot. This is that
same decision carried forward: sds: SdsRoot is today’s mhlw-v1
representation, not a placeholder for a schema refactor.
Fields§
§sds: SdsRoot§findings: Vec<Finding>§unresolved: Vec<UnresolvedField>§provenance: Vec<FieldProvenance>§evidence_summary: EvidenceSummary§release_status: ReleaseStatusTrait Implementations§
Source§impl Clone for GenerationResult
impl Clone for GenerationResult
Source§fn clone(&self) -> GenerationResult
fn clone(&self) -> GenerationResult
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 GenerationResult
impl Debug for GenerationResult
Source§impl<'de> Deserialize<'de> for GenerationResult
impl<'de> Deserialize<'de> for GenerationResult
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
Auto Trait Implementations§
impl Freeze for GenerationResult
impl RefUnwindSafe for GenerationResult
impl Send for GenerationResult
impl Sync for GenerationResult
impl Unpin for GenerationResult
impl UnsafeUnpin for GenerationResult
impl UnwindSafe for GenerationResult
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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