pub struct EvidenceGap {
pub asset: AssetRef,
pub reason: String,
}Expand description
A typed failed-localization record (2026-07-18 incorporation, item ③): the declared asset plus why its bytes could not be localized. Gaps are data, never silent omissions (principle 4/R4).
Fields§
§asset: AssetRefThe declared asset, verbatim.
reason: StringWhy localization failed.
Trait Implementations§
Source§impl Clone for EvidenceGap
impl Clone for EvidenceGap
Source§fn clone(&self) -> EvidenceGap
fn clone(&self) -> EvidenceGap
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 EvidenceGap
impl Debug for EvidenceGap
Source§impl<'de> Deserialize<'de> for EvidenceGap
impl<'de> Deserialize<'de> for EvidenceGap
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 JsonSchema for EvidenceGap
impl JsonSchema for EvidenceGap
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for EvidenceGap
impl PartialEq for EvidenceGap
Source§impl Serialize for EvidenceGap
impl Serialize for EvidenceGap
impl StructuralPartialEq for EvidenceGap
Auto Trait Implementations§
impl Freeze for EvidenceGap
impl RefUnwindSafe for EvidenceGap
impl Send for EvidenceGap
impl Sync for EvidenceGap
impl Unpin for EvidenceGap
impl UnsafeUnpin for EvidenceGap
impl UnwindSafe for EvidenceGap
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