[][src]Struct mupdf::TextSpan

pub struct TextSpan { /* fields omitted */ }

Implementations

impl TextSpan[src]

pub fn font(&self) -> Font[src]

pub fn trm(&self) -> Matrix[src]

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

pub fn set_wmode(&mut self, wmode: WriteMode)[src]

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

pub fn set_bidi_level(&mut self, bidi_level: u32)[src]

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

pub fn set_markup_dir(&mut self, dir: BidiDirection)[src]

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

pub fn set_language(&mut self, language: Language)[src]

pub fn items(&self) -> TextItemIter<'_>

Notable traits for TextItemIter<'a>

impl<'a> Iterator for TextItemIter<'a> type Item = TextItem;
[src]

Trait Implementations

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