#[repr(C)]pub struct _spinTIFFOption {
pub compression: spinCompressionMethod,
pub reserved: [c_uint; 16],
}Expand description
Options for saving TIFF images. Used in saving PPM images with a call to spinImageSaveTiff().
Fields§
§compression: spinCompressionMethodCompression method to use for encoding TIFF images.
reserved: [c_uint; 16]Reserved for future use.
Trait Implementations§
Source§impl Clone for _spinTIFFOption
impl Clone for _spinTIFFOption
Source§fn clone(&self) -> _spinTIFFOption
fn clone(&self) -> _spinTIFFOption
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 _spinTIFFOption
impl Debug for _spinTIFFOption
impl Copy for _spinTIFFOption
Auto Trait Implementations§
impl Freeze for _spinTIFFOption
impl RefUnwindSafe for _spinTIFFOption
impl Send for _spinTIFFOption
impl Sync for _spinTIFFOption
impl Unpin for _spinTIFFOption
impl UnwindSafe for _spinTIFFOption
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