#[repr(C)]pub struct UsbCamSetupStillParam {
pub size: i32,
pub resolution: UsbCamResolution,
pub jpeg_size: i32,
pub reverse_flags: UsbCamReverseFlags,
pub delay: UsbCamDelay,
pub comp_level: i32,
}Expand description
Structure for sceUsbCamSetupStill
Fields§
§size: i32Size of the UsbCamSetupStillParam structure.
resolution: UsbCamResolutionResolution.
jpeg_size: i32Size of the jpeg image.
reverse_flags: UsbCamReverseFlagsReverse effect to apply. Zero or more of UsbCamReverseFlags.
delay: UsbCamDelayDelay to apply to take the picture.
comp_level: i32JPEG compression level, a value from 1-63.
1 -> less compression, better quality; 63 -> max compression, worse quality.
Trait Implementations§
Source§impl Clone for UsbCamSetupStillParam
impl Clone for UsbCamSetupStillParam
Source§fn clone(&self) -> UsbCamSetupStillParam
fn clone(&self) -> UsbCamSetupStillParam
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for UsbCamSetupStillParam
Auto Trait Implementations§
impl Freeze for UsbCamSetupStillParam
impl RefUnwindSafe for UsbCamSetupStillParam
impl Send for UsbCamSetupStillParam
impl Sync for UsbCamSetupStillParam
impl Unpin for UsbCamSetupStillParam
impl UnsafeUnpin for UsbCamSetupStillParam
impl UnwindSafe for UsbCamSetupStillParam
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