#[repr(C)]pub struct fz_draw_options {
pub rotate: c_int,
pub x_resolution: c_int,
pub y_resolution: c_int,
pub width: c_int,
pub height: c_int,
pub colorspace: *mut fz_colorspace,
pub alpha: c_int,
pub graphics: c_int,
pub text: c_int,
}Expand description
struct fz_draw_options: Options for creating a pixmap and draw
device.
Fields§
§rotate: c_int§x_resolution: c_int§y_resolution: c_int§width: c_int§height: c_int§colorspace: *mut fz_colorspace§alpha: c_int§graphics: c_int§text: c_intTrait Implementations§
Source§impl Clone for fz_draw_options
impl Clone for fz_draw_options
Source§fn clone(&self) -> fz_draw_options
fn clone(&self) -> fz_draw_options
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 fz_draw_options
impl Debug for fz_draw_options
impl Copy for fz_draw_options
Auto Trait Implementations§
impl Freeze for fz_draw_options
impl RefUnwindSafe for fz_draw_options
impl !Send for fz_draw_options
impl !Sync for fz_draw_options
impl Unpin for fz_draw_options
impl UnwindSafe for fz_draw_options
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