pub struct Metadata {Show 14 fields
pub namespace: String,
pub version: Option<GaebVersion>,
pub namespace_version: Option<GaebVersion>,
pub declared_version: Option<GaebVersion>,
pub version_text: Option<String>,
pub version_date: Option<String>,
pub phase: Option<ExchangePhase>,
pub namespace_phase: Option<ExchangePhase>,
pub declared_phase: Option<ExchangePhase>,
pub phase_code: Option<String>,
pub date: Option<String>,
pub time: Option<String>,
pub program_system: Option<String>,
pub program_name: Option<String>,
}Expand description
Evidence and generator information extracted from a GAEB document.
Fields§
§namespace: StringRoot element namespace, preserved verbatim.
version: Option<GaebVersion>Namespace-first effective version. Inspect diagnostics when evidence differs.
namespace_version: Option<GaebVersion>Version encoded structurally by the namespace, when available.
declared_version: Option<GaebVersion>Version declared by <GAEBInfo><Version>.
version_text: Option<String>Uninterpreted <Version> text, including future values.
version_date: Option<String>§phase: Option<ExchangePhase>Namespace-first effective exchange phase.
namespace_phase: Option<ExchangePhase>Phase encoded structurally by a 3.2+ namespace.
declared_phase: Option<ExchangePhase>Phase declared by <DP>.
phase_code: Option<String>Uninterpreted <DP> text, including future values.
date: Option<String>§time: Option<String>§program_system: Option<String>§program_name: Option<String>Trait Implementations§
impl Eq for Metadata
impl StructuralPartialEq for Metadata
Auto Trait Implementations§
impl Freeze for Metadata
impl RefUnwindSafe for Metadata
impl Send for Metadata
impl Sync for Metadata
impl Unpin for Metadata
impl UnsafeUnpin for Metadata
impl UnwindSafe for Metadata
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