#[repr(C)]pub struct fz_stroke_state {
pub refs: c_int,
pub start_cap: fz_linecap,
pub dash_cap: fz_linecap,
pub end_cap: fz_linecap,
pub linejoin: fz_linejoin,
pub linewidth: f32,
pub miterlimit: f32,
pub dash_phase: f32,
pub dash_len: c_int,
pub dash_list: [f32; 32],
}Fields§
§refs: c_int§start_cap: fz_linecap§dash_cap: fz_linecap§end_cap: fz_linecap§linejoin: fz_linejoin§linewidth: f32§miterlimit: f32§dash_phase: f32§dash_len: c_int§dash_list: [f32; 32]Trait Implementations§
Source§impl Clone for fz_stroke_state
impl Clone for fz_stroke_state
Source§fn clone(&self) -> fz_stroke_state
fn clone(&self) -> fz_stroke_state
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_stroke_state
impl Debug for fz_stroke_state
impl Copy for fz_stroke_state
Auto Trait Implementations§
impl Freeze for fz_stroke_state
impl RefUnwindSafe for fz_stroke_state
impl Send for fz_stroke_state
impl Sync for fz_stroke_state
impl Unpin for fz_stroke_state
impl UnwindSafe for fz_stroke_state
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