pub enum BayerDepth {
Depth8,
Depth16BE,
Depth16LE,
}Expand description
The depth and endianness of the raw image.
Note that many cameras only capture 12-bits per pixel, but still store the data as 16-bits per pixel. These should be treated as 16-bits per pixel for the purposes of this library.
Variants§
Trait Implementations§
Source§impl Clone for BayerDepth
impl Clone for BayerDepth
Source§fn clone(&self) -> BayerDepth
fn clone(&self) -> BayerDepth
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 BayerDepth
impl Debug for BayerDepth
Source§impl PartialEq for BayerDepth
impl PartialEq for BayerDepth
impl Copy for BayerDepth
impl Eq for BayerDepth
impl StructuralPartialEq for BayerDepth
Auto Trait Implementations§
impl Freeze for BayerDepth
impl RefUnwindSafe for BayerDepth
impl Send for BayerDepth
impl Sync for BayerDepth
impl Unpin for BayerDepth
impl UnsafeUnpin for BayerDepth
impl UnwindSafe for BayerDepth
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