pub struct Tracking {
pub current_release_date: String,
pub generator: Option<Generator>,
pub id: String,
pub initial_release_date: String,
pub revision_history: Vec<Revision>,
pub status: String,
pub version: String,
pub aliases: Vec<String>,
}Expand description
Document lifecycle tracking information.
Fields§
§current_release_date: StringDate of the current release.
generator: Option<Generator>Generator tool information.
id: StringDocument tracking identifier (e.g. ndaal-sa-2026-001).
initial_release_date: StringDate of the initial release.
revision_history: Vec<Revision>Revision history entries.
status: StringDocument status (draft, interim, final).
version: StringDocument version (semver-like, e.g. "1.0.0").
aliases: Vec<String>Aliases for this tracking ID.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Tracking
impl<'de> Deserialize<'de> for Tracking
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 StructuralPartialEq for Tracking
Auto Trait Implementations§
impl Freeze for Tracking
impl RefUnwindSafe for Tracking
impl Send for Tracking
impl Sync for Tracking
impl Unpin for Tracking
impl UnsafeUnpin for Tracking
impl UnwindSafe for Tracking
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