#[non_exhaustive]pub struct Fmp4Config {
pub codec_tag: String,
/* private fields */
}
Expand description
fmp4
container configuration.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.codec_tag: String
Optional. Specify the codec tag string that will be used in the media bitstream. When not specified, the codec appropriate value is used.
Supported H265 codec tags:
hvc1
(default)hev1
Implementations§
Source§impl Fmp4Config
impl Fmp4Config
Trait Implementations§
Source§impl Clone for Fmp4Config
impl Clone for Fmp4Config
Source§fn clone(&self) -> Fmp4Config
fn clone(&self) -> Fmp4Config
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 Fmp4Config
impl Debug for Fmp4Config
Source§impl Default for Fmp4Config
impl Default for Fmp4Config
Source§fn default() -> Fmp4Config
fn default() -> Fmp4Config
Returns the “default value” for a type. Read more
Source§impl PartialEq for Fmp4Config
impl PartialEq for Fmp4Config
impl StructuralPartialEq for Fmp4Config
Auto Trait Implementations§
impl Freeze for Fmp4Config
impl RefUnwindSafe for Fmp4Config
impl Send for Fmp4Config
impl Sync for Fmp4Config
impl Unpin for Fmp4Config
impl UnwindSafe for Fmp4Config
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