#[repr(C)]pub struct fz_stext_char {
pub c: c_int,
pub bidi: u16,
pub flags: u16,
pub argb: u32,
pub origin: fz_point,
pub quad: fz_quad,
pub size: f32,
pub font: *mut fz_font,
pub next: *mut fz_stext_char,
}Expand description
A text char is a unicode character, the style in which is
appears, and the point at which it is positioned.
Fields§
§c: c_int§bidi: u16§flags: u16§argb: u32§origin: fz_point§quad: fz_quad§size: f32§font: *mut fz_font§next: *mut fz_stext_charTrait Implementations§
Source§impl Clone for fz_stext_char
impl Clone for fz_stext_char
Source§fn clone(&self) -> fz_stext_char
fn clone(&self) -> fz_stext_char
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_char
impl Debug for fz_stext_char
impl Copy for fz_stext_char
Auto Trait Implementations§
impl Freeze for fz_stext_char
impl RefUnwindSafe for fz_stext_char
impl !Send for fz_stext_char
impl !Sync for fz_stext_char
impl Unpin for fz_stext_char
impl UnwindSafe for fz_stext_char
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