Struct mupdf_sys::fz_stroke_state[][src]

#[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_intstart_cap: fz_linecapdash_cap: fz_linecapend_cap: fz_linecaplinejoin: fz_linejoinlinewidth: f32miterlimit: f32dash_phase: f32dash_len: c_intdash_list: [f32; 32]

Trait Implementations

impl Clone for fz_stroke_state[src]

impl Copy for fz_stroke_state[src]

impl Debug for fz_stroke_state[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.