[][src]Struct mupdf_sys::pdf_text_object_state_s

#[repr(C)]
pub struct pdf_text_object_state_s {
    pub text: *mut fz_text,
    pub text_bbox: fz_rect,
    pub tlm: fz_matrix,
    pub tm: fz_matrix,
    pub text_mode: c_int,
    pub cid: c_int,
    pub gid: c_int,
    pub char_bbox: fz_rect,
    pub fontdesc: *mut pdf_font_desc,
    pub char_tx: f32,
    pub char_ty: f32,
}

Fields

text: *mut fz_texttext_bbox: fz_recttlm: fz_matrixtm: fz_matrixtext_mode: c_intcid: c_intgid: c_intchar_bbox: fz_rectfontdesc: *mut pdf_font_descchar_tx: f32char_ty: f32

Trait Implementations

impl Clone for pdf_text_object_state_s[src]

impl Copy for pdf_text_object_state_s[src]

impl Debug for pdf_text_object_state_s[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.