pub enum CROP {
Full = 0,
Cropped = 1,
}
Expand description
Crop feature
Value on reset: 0
Variants§
Full = 0
0: The full image is captured. In this case the total number of bytes in an image frame must be a multiple of four
Cropped = 1
1: Only the data inside the window specified by the crop register is captured. If the size of the crop window exceeds the picture size, then only the picture size is captured
Trait Implementations§
impl Copy for CROP
impl Eq for CROP
impl StructuralPartialEq for CROP
Auto Trait Implementations§
impl Freeze for CROP
impl RefUnwindSafe for CROP
impl Send for CROP
impl Sync for CROP
impl Unpin for CROP
impl UnwindSafe for CROP
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