pub struct InputAttributes {
pub track_definitions: Option<Vec<TrackDefinition>>,
}Expand description
Input attributes that provide additional information about the input asset.
This type is not used in any activity, and only used as part of another schema.
Fields§
§track_definitions: Option<Vec<TrackDefinition>>Optional. A list of track definitions for the input asset.
Trait Implementations§
Source§impl Clone for InputAttributes
impl Clone for InputAttributes
Source§fn clone(&self) -> InputAttributes
fn clone(&self) -> InputAttributes
Returns a duplicate of the value. Read more
1.0.0 · 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 InputAttributes
impl Debug for InputAttributes
Source§impl Default for InputAttributes
impl Default for InputAttributes
Source§fn default() -> InputAttributes
fn default() -> InputAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InputAttributes
impl<'de> Deserialize<'de> for InputAttributes
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 Serialize for InputAttributes
impl Serialize for InputAttributes
impl Part for InputAttributes
Auto Trait Implementations§
impl Freeze for InputAttributes
impl RefUnwindSafe for InputAttributes
impl Send for InputAttributes
impl Sync for InputAttributes
impl Unpin for InputAttributes
impl UnwindSafe for InputAttributes
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