pub struct OutputProfileList {
pub id: ImfUuid,
pub annotation: Option<String>,
pub issue_date: String,
pub issuer: Option<String>,
pub creator: Option<String>,
pub composition_playlist_id: ImfUuid,
}Expand description
OPL XML — Output Profile List (SMPTE ST 2067-100).
Defines output processing instructions for a composition: image scaling,
cropping, pixel encoding, and audio routing/mixing macros. The macro list
is not deserialized (it uses xsi:type polymorphism with vendor-specific
extension types).
Fields§
§id: ImfUuid§annotation: Option<String>§issue_date: StringISO 8601 issue date.
issuer: Option<String>§creator: Option<String>§composition_playlist_id: ImfUuidThe CPL that this OPL targets.
Trait Implementations§
Source§impl Debug for OutputProfileList
impl Debug for OutputProfileList
Source§impl<'de> Deserialize<'de> for OutputProfileList
impl<'de> Deserialize<'de> for OutputProfileList
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 PartialEq for OutputProfileList
impl PartialEq for OutputProfileList
Source§fn eq(&self, other: &OutputProfileList) -> bool
fn eq(&self, other: &OutputProfileList) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for OutputProfileList
impl Serialize for OutputProfileList
impl StructuralPartialEq for OutputProfileList
Auto Trait Implementations§
impl Freeze for OutputProfileList
impl RefUnwindSafe for OutputProfileList
impl Send for OutputProfileList
impl Sync for OutputProfileList
impl Unpin for OutputProfileList
impl UnsafeUnpin for OutputProfileList
impl UnwindSafe for OutputProfileList
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