[][src]Struct mupdf_sys::fz_text_span

#[repr(C)]pub struct fz_text_span {
    pub font: *mut fz_font,
    pub trm: fz_matrix,
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4], u16>,
    pub len: c_int,
    pub cap: c_int,
    pub items: *mut fz_text_item,
    pub next: *mut fz_text_span,
}

Fields

font: *mut fz_fonttrm: fz_matrix_bitfield_1: __BindgenBitfieldUnit<[u8; 4], u16>len: c_intcap: c_intitems: *mut fz_text_itemnext: *mut fz_text_span

Implementations

impl fz_text_span[src]

pub fn wmode(&self) -> c_uint[src]

pub fn set_wmode(&mut self, val: c_uint)[src]

pub fn bidi_level(&self) -> c_uint[src]

pub fn set_bidi_level(&mut self, val: c_uint)[src]

pub fn markup_dir(&self) -> c_uint[src]

pub fn set_markup_dir(&mut self, val: c_uint)[src]

pub fn language(&self) -> c_uint[src]

pub fn set_language(&mut self, val: c_uint)[src]

pub fn new_bitfield_1(
    wmode: c_uint,
    bidi_level: c_uint,
    markup_dir: c_uint,
    language: c_uint
) -> __BindgenBitfieldUnit<[u8; 4], u16>
[src]

Trait Implementations

impl Clone for fz_text_span[src]

impl Copy for fz_text_span[src]

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