Enum windows_capture::encoder::VideoEncoderQuality
source ยท pub enum VideoEncoderQuality {
Auto = 0,
HD1080p = 1,
HD720p = 2,
Wvga = 3,
Ntsc = 4,
Pal = 5,
Vga = 6,
Qvga = 7,
Uhd2160p = 8,
Uhd4320p = 9,
}Variantsยง
Auto = 0
HD1080p = 1
HD720p = 2
Wvga = 3
Ntsc = 4
Pal = 5
Vga = 6
Qvga = 7
Uhd2160p = 8
Uhd4320p = 9
Trait Implementationsยง
sourceยงimpl Clone for VideoEncoderQuality
impl Clone for VideoEncoderQuality
sourceยงfn clone(&self) -> VideoEncoderQuality
fn clone(&self) -> VideoEncoderQuality
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 VideoEncoderQuality
impl Debug for VideoEncoderQuality
sourceยงimpl PartialEq for VideoEncoderQuality
impl PartialEq for VideoEncoderQuality
sourceยงfn eq(&self, other: &VideoEncoderQuality) -> bool
fn eq(&self, other: &VideoEncoderQuality) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for VideoEncoderQuality
impl Eq for VideoEncoderQuality
impl StructuralPartialEq for VideoEncoderQuality
Auto Trait Implementationsยง
impl Freeze for VideoEncoderQuality
impl RefUnwindSafe for VideoEncoderQuality
impl Send for VideoEncoderQuality
impl Sync for VideoEncoderQuality
impl Unpin for VideoEncoderQuality
impl UnwindSafe for VideoEncoderQuality
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> 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