pub struct SidecarCompositionMap {
pub id: ImfUuid,
pub issue_date: String,
pub issuer: Option<String>,
pub annotation: Option<String>,
pub has_signer: bool,
pub has_signature: bool,
pub sidecar_assets: Vec<SidecarAsset>,
}Expand description
A parsed Sidecar Composition Map document (ST 2067-9:2018).
Field naming flattens the XSD’s <Properties> wrapper into the
top-level struct; on the wire the document still carries
<Properties>{Annotation,IssueDate,Issuer}</Properties> per
ST 2067-9:2018 §7.2 Table 2.
Fields§
§id: ImfUuidUUID of this SCM document.
issue_date: String§issuer: Option<String>§annotation: Option<String>§has_signer: boolTrue if a <Signer> element was present (§7.2.4).
has_signature: boolTrue if a <Signature> element was present (§7.2.5).
sidecar_assets: Vec<SidecarAsset>Sidecar asset associations.
Trait Implementations§
Source§impl Clone for SidecarCompositionMap
impl Clone for SidecarCompositionMap
Source§fn clone(&self) -> SidecarCompositionMap
fn clone(&self) -> SidecarCompositionMap
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 SidecarCompositionMap
impl Debug for SidecarCompositionMap
Source§impl PartialEq for SidecarCompositionMap
impl PartialEq for SidecarCompositionMap
Source§fn eq(&self, other: &SidecarCompositionMap) -> bool
fn eq(&self, other: &SidecarCompositionMap) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SidecarCompositionMap
impl Serialize for SidecarCompositionMap
impl StructuralPartialEq for SidecarCompositionMap
Auto Trait Implementations§
impl Freeze for SidecarCompositionMap
impl RefUnwindSafe for SidecarCompositionMap
impl Send for SidecarCompositionMap
impl Sync for SidecarCompositionMap
impl Unpin for SidecarCompositionMap
impl UnsafeUnpin for SidecarCompositionMap
impl UnwindSafe for SidecarCompositionMap
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