pub enum OnMetaDataAudioCodecId {
Legacy(SoundFormat),
Enhanced(AudioFourCc),
}
Expand description
FLV onMetaData
audio codec ID.
Either a legacy SoundFormat
or an enhanced AudioFourCc
.
Appears as audiocodecid
in the OnMetaData
script data.
Variants§
Trait Implementations§
Source§impl Clone for OnMetaDataAudioCodecId
impl Clone for OnMetaDataAudioCodecId
Source§fn clone(&self) -> OnMetaDataAudioCodecId
fn clone(&self) -> OnMetaDataAudioCodecId
Returns a copy 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 OnMetaDataAudioCodecId
impl Debug for OnMetaDataAudioCodecId
Source§impl<'de> Deserialize<'de> for OnMetaDataAudioCodecId
impl<'de> Deserialize<'de> for OnMetaDataAudioCodecId
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 OnMetaDataAudioCodecId
impl PartialEq for OnMetaDataAudioCodecId
impl StructuralPartialEq for OnMetaDataAudioCodecId
Auto Trait Implementations§
impl Freeze for OnMetaDataAudioCodecId
impl RefUnwindSafe for OnMetaDataAudioCodecId
impl Send for OnMetaDataAudioCodecId
impl Sync for OnMetaDataAudioCodecId
impl Unpin for OnMetaDataAudioCodecId
impl UnwindSafe for OnMetaDataAudioCodecId
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