pub struct TranscodingProfile {Show 16 fields
pub container: String,
pub type_field: String,
pub video_codec: String,
pub audio_codec: String,
pub protocol: String,
pub estimate_content_length: bool,
pub enable_mpegts_m2ts_mode: bool,
pub transcode_seek_info: String,
pub copy_timestamps: bool,
pub context: String,
pub enable_subtitles_in_manifest: bool,
pub max_audio_channels: String,
pub min_segments: i64,
pub segment_length: i64,
pub break_on_non_key_frames: bool,
pub conditions: Vec<Value>,
}Fields§
§container: String§type_field: String§video_codec: String§audio_codec: String§protocol: String§estimate_content_length: bool§enable_mpegts_m2ts_mode: bool§transcode_seek_info: String§copy_timestamps: bool§context: String§enable_subtitles_in_manifest: bool§max_audio_channels: String§min_segments: i64§segment_length: i64§break_on_non_key_frames: bool§conditions: Vec<Value>Trait Implementations§
Source§impl Clone for TranscodingProfile
impl Clone for TranscodingProfile
Source§fn clone(&self) -> TranscodingProfile
fn clone(&self) -> TranscodingProfile
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 TranscodingProfile
impl Debug for TranscodingProfile
Source§impl Default for TranscodingProfile
impl Default for TranscodingProfile
Source§fn default() -> TranscodingProfile
fn default() -> TranscodingProfile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TranscodingProfile
impl<'de> Deserialize<'de> for TranscodingProfile
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 TranscodingProfile
impl PartialEq for TranscodingProfile
Source§impl Serialize for TranscodingProfile
impl Serialize for TranscodingProfile
impl StructuralPartialEq for TranscodingProfile
Auto Trait Implementations§
impl Freeze for TranscodingProfile
impl RefUnwindSafe for TranscodingProfile
impl Send for TranscodingProfile
impl Sync for TranscodingProfile
impl Unpin for TranscodingProfile
impl UnwindSafe for TranscodingProfile
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