Struct google_transcoder1::api::Manifest
source · pub struct Manifest {
pub file_name: Option<String>,
pub mux_streams: Option<Vec<String>>,
pub type_: Option<String>,
}
Expand description
Manifest configuration.
This type is not used in any activity, and only used as part of another schema.
Fields§
§file_name: Option<String>
The name of the generated file. The default is manifest
with the extension suffix corresponding to the Manifest.type
.
mux_streams: Option<Vec<String>>
Required. List of user given MuxStream.key
s that should appear in this manifest. When Manifest.type
is HLS
, a media manifest with name MuxStream.key
and .m3u8
extension is generated for each element of the Manifest.mux_streams
.
type_: Option<String>
Required. Type of the manifest, can be HLS
or DASH
.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Manifest
impl<'de> Deserialize<'de> for Manifest
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