#[repr(C)]pub struct fz_stext_line {
pub wmode: c_int,
pub dir: fz_point,
pub bbox: fz_rect,
pub first_char: *mut fz_stext_char,
pub last_char: *mut fz_stext_char,
pub prev: *mut fz_stext_line,
pub next: *mut fz_stext_line,
}Expand description
A text line is a list of characters that share a common baseline.
Fields§
§wmode: c_int§dir: fz_point§bbox: fz_rect§first_char: *mut fz_stext_char§last_char: *mut fz_stext_char§prev: *mut fz_stext_line§next: *mut fz_stext_lineTrait Implementations§
Source§impl Clone for fz_stext_line
impl Clone for fz_stext_line
Source§fn clone(&self) -> fz_stext_line
fn clone(&self) -> fz_stext_line
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_stext_line
impl Debug for fz_stext_line
impl Copy for fz_stext_line
Auto Trait Implementations§
impl Freeze for fz_stext_line
impl RefUnwindSafe for fz_stext_line
impl !Send for fz_stext_line
impl !Sync for fz_stext_line
impl Unpin for fz_stext_line
impl UnwindSafe for fz_stext_line
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