pub enum ContainerSettingsSubType {
ASF,
MP3,
MPEG4,
AVI,
MPEG2,
WAVE,
AACADTS,
ADTS,
GP3,
AMR,
FLAC,
}展开描述
容器子类型。
变体§
ASF
高级系统格式(ASF)。
MP3
原始 MP3 容器。
MPEG4
MPEG-4 容器(例如 MP4)。
AVI
音视频交错格式(AVI)。
MPEG2
MPEG-2 容器。
WAVE
WAVE (WAV) 容器。
AACADTS
AAC ADTS 流。
ADTS
ADTS 容器。
GP3
3GP 容器。
AMR
AMR 容器。
FLAC
FLAC 容器。
实现§
源代码§impl ContainerSettingsSubType
impl ContainerSettingsSubType
源代码pub fn to_hstring(&self) -> HSTRING
pub fn to_hstring(&self) -> HSTRING
返回此 ContainerSettingsSubType 的 Windows Media 容器子类型标识符字符串。
Trait 实现§
源代码§impl Clone for ContainerSettingsSubType
impl Clone for ContainerSettingsSubType
源代码§fn clone(&self) -> ContainerSettingsSubType
fn clone(&self) -> ContainerSettingsSubType
返回值的副本。 阅读更多
1.0.0 · 源代码§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. 阅读更多源代码§impl Debug for ContainerSettingsSubType
impl Debug for ContainerSettingsSubType
源代码§impl PartialEq for ContainerSettingsSubType
impl PartialEq for ContainerSettingsSubType
impl Copy for ContainerSettingsSubType
impl Eq for ContainerSettingsSubType
impl StructuralPartialEq for ContainerSettingsSubType
自动 Trait 实现§
impl Freeze for ContainerSettingsSubType
impl RefUnwindSafe for ContainerSettingsSubType
impl Send for ContainerSettingsSubType
impl Sync for ContainerSettingsSubType
impl Unpin for ContainerSettingsSubType
impl UnsafeUnpin for ContainerSettingsSubType
impl UnwindSafe for ContainerSettingsSubType
通用实现§
源代码§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
源代码§impl<T> IntoEither for T
impl<T> IntoEither for T
源代码§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
将
self 转换为 Left 变体,如果 Either<Self, Self>
当 into_left is true.
Converts self into a Right 变体,如果 Either<Self, Self>
否则。 阅读更多源代码§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
将
self 转换为 Left 变体,如果 Either<Self, Self>
当 into_left(&self) returns true.
Converts self into a Right 变体,如果 Either<Self, Self>
否则。 阅读更多