pub enum VideoSettingsSubType {
Show 22 variants
ARGB32,
BGRA8,
D16,
H263,
H264,
H264ES,
HEVC,
HEVCES,
IYUV,
L8,
L16,
MJPG,
NV12,
MPEG1,
MPEG2,
RGB24,
RGB32,
WMV3,
WVC1,
VP9,
YUY2,
YV12,
}
Expand description
The VideoSettingsSubType
enum represents the subtypes for the video encoder.
Variantsยง
ARGB32
BGRA8
D16
H263
H264
H264ES
HEVC
HEVCES
IYUV
L8
L16
MJPG
NV12
MPEG1
MPEG2
RGB24
RGB32
WMV3
WVC1
VP9
YUY2
YV12
Implementationsยง
Sourceยงimpl VideoSettingsSubType
impl VideoSettingsSubType
pub fn to_hstring(&self) -> HSTRING
Trait Implementationsยง
Sourceยงimpl Clone for VideoSettingsSubType
impl Clone for VideoSettingsSubType
Sourceยงfn clone(&self) -> VideoSettingsSubType
fn clone(&self) -> VideoSettingsSubType
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 VideoSettingsSubType
impl Debug for VideoSettingsSubType
Sourceยงimpl PartialEq for VideoSettingsSubType
impl PartialEq for VideoSettingsSubType
impl Copy for VideoSettingsSubType
impl Eq for VideoSettingsSubType
impl StructuralPartialEq for VideoSettingsSubType
Auto Trait Implementationsยง
impl Freeze for VideoSettingsSubType
impl RefUnwindSafe for VideoSettingsSubType
impl Send for VideoSettingsSubType
impl Sync for VideoSettingsSubType
impl Unpin for VideoSettingsSubType
impl UnwindSafe for VideoSettingsSubType
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
Sourceยงimpl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Sourceยงimpl<T> IntoEither for T
impl<T> IntoEither for T
Sourceยงfn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSourceยงfn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more