tiff_ifd_t

Struct tiff_ifd_t 

Source
#[repr(C)]
pub struct tiff_ifd_t {
Show 32 fields pub t_width: c_int, pub t_height: c_int, pub bps: c_int, pub comp: c_int, pub phint: c_int, pub offset: c_int, pub t_flip: c_int, pub samples: c_int, pub bytes: c_int, pub extrasamples: c_int, pub t_tile_width: c_int, pub t_tile_length: c_int, pub sample_format: c_int, pub predictor: c_int, pub rows_per_strip: c_int, pub strip_offsets: *mut c_int, pub strip_offsets_count: c_int, pub strip_byte_counts: *mut c_int, pub strip_byte_counts_count: c_int, pub t_filters: c_uint, pub t_vwidth: c_int, pub t_vheight: c_int, pub t_lm: c_int, pub t_tm: c_int, pub t_fuji_width: c_int, pub t_shutter: f32, pub opcode2_offset: INT64, pub lineartable_offset: INT64, pub lineartable_len: c_int, pub dng_color: [libraw_dng_color_t; 2], pub dng_levels: libraw_dng_levels_t, pub newsubfiletype: c_int,
}

Fields§

§t_width: c_int§t_height: c_int§bps: c_int§comp: c_int§phint: c_int§offset: c_int§t_flip: c_int§samples: c_int§bytes: c_int§extrasamples: c_int§t_tile_width: c_int§t_tile_length: c_int§sample_format: c_int§predictor: c_int§rows_per_strip: c_int§strip_offsets: *mut c_int§strip_offsets_count: c_int§strip_byte_counts: *mut c_int§strip_byte_counts_count: c_int§t_filters: c_uint§t_vwidth: c_int§t_vheight: c_int§t_lm: c_int§t_tm: c_int§t_fuji_width: c_int§t_shutter: f32§opcode2_offset: INT64§lineartable_offset: INT64§lineartable_len: c_int§dng_color: [libraw_dng_color_t; 2]§dng_levels: libraw_dng_levels_t§newsubfiletype: c_int

Trait Implementations§

Source§

impl Clone for tiff_ifd_t

Source§

fn clone(&self) -> tiff_ifd_t

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for tiff_ifd_t

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.