#[repr(i32)]pub enum POABayerPattern {
POA_BAYER_RG = 0,
POA_BAYER_BG = 1,
POA_BAYER_GR = 2,
POA_BAYER_GB = 3,
POA_BAYER_MONO = -1,
}Variants§
POA_BAYER_RG = 0
< RGGB
POA_BAYER_BG = 1
< BGGR
POA_BAYER_GR = 2
< GRBG
POA_BAYER_GB = 3
< GBRG
POA_BAYER_MONO = -1
< Monochrome, the mono camera with this
Trait Implementations§
Source§impl Clone for _POABayerPattern
impl Clone for _POABayerPattern
Source§fn clone(&self) -> _POABayerPattern
fn clone(&self) -> _POABayerPattern
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 _POABayerPattern
impl Debug for _POABayerPattern
Source§impl Hash for _POABayerPattern
impl Hash for _POABayerPattern
Source§impl PartialEq for _POABayerPattern
impl PartialEq for _POABayerPattern
impl Copy for _POABayerPattern
impl Eq for _POABayerPattern
impl StructuralPartialEq for _POABayerPattern
Auto Trait Implementations§
impl Freeze for _POABayerPattern
impl RefUnwindSafe for _POABayerPattern
impl Send for _POABayerPattern
impl Sync for _POABayerPattern
impl Unpin for _POABayerPattern
impl UnwindSafe for _POABayerPattern
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