#[repr(C)]pub struct libraw_processed_image_t {
pub type_: LibRaw_image_formats,
pub height: ushort,
pub width: ushort,
pub colors: ushort,
pub bits: ushort,
pub data_size: c_uint,
pub data: [c_uchar; 1],
}Fields§
§type_: LibRaw_image_formats§height: ushort§width: ushort§colors: ushort§bits: ushort§data_size: c_uint§data: [c_uchar; 1]Trait Implementations§
Source§impl Clone for libraw_processed_image_t
impl Clone for libraw_processed_image_t
Source§fn clone(&self) -> libraw_processed_image_t
fn clone(&self) -> libraw_processed_image_t
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 libraw_processed_image_t
impl Debug for libraw_processed_image_t
Source§impl PartialEq for libraw_processed_image_t
impl PartialEq for libraw_processed_image_t
impl Copy for libraw_processed_image_t
impl Eq for libraw_processed_image_t
impl StructuralPartialEq for libraw_processed_image_t
Auto Trait Implementations§
impl Freeze for libraw_processed_image_t
impl RefUnwindSafe for libraw_processed_image_t
impl Send for libraw_processed_image_t
impl Sync for libraw_processed_image_t
impl Unpin for libraw_processed_image_t
impl UnwindSafe for libraw_processed_image_t
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