pub enum VideoPixelFormat {
RGB24,
YUY2,
NV12,
YUV420,
GRAY,
MJPEG,
Unsupported(u32),
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for VideoPixelFormat
impl Clone for VideoPixelFormat
Source§fn clone(&self) -> VideoPixelFormat
fn clone(&self) -> VideoPixelFormat
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 VideoPixelFormat
impl Debug for VideoPixelFormat
Source§impl Hash for VideoPixelFormat
impl Hash for VideoPixelFormat
Source§impl PartialEq for VideoPixelFormat
impl PartialEq for VideoPixelFormat
impl Copy for VideoPixelFormat
impl Eq for VideoPixelFormat
impl StructuralPartialEq for VideoPixelFormat
Auto Trait Implementations§
impl Freeze for VideoPixelFormat
impl RefUnwindSafe for VideoPixelFormat
impl Send for VideoPixelFormat
impl Sync for VideoPixelFormat
impl Unpin for VideoPixelFormat
impl UnwindSafe for VideoPixelFormat
Blanket Implementations§
Source§impl<T> ActionTrait for T
impl<T> ActionTrait for T
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