#[repr(C)]pub struct fz_text_span {
pub font: *mut fz_font,
pub trm: fz_matrix,
pub _bitfield_align_1: [u16; 0],
pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4]>,
pub len: c_int,
pub cap: c_int,
pub items: *mut fz_text_item,
pub next: *mut fz_text_span,
}Fields§
§font: *mut fz_font§trm: fz_matrix§_bitfield_align_1: [u16; 0]§_bitfield_1: __BindgenBitfieldUnit<[u8; 4]>§len: c_int§cap: c_int§items: *mut fz_text_item§next: *mut fz_text_spanImplementations§
Source§impl fz_text_span
impl fz_text_span
pub fn wmode(&self) -> c_uint
pub fn set_wmode(&mut self, val: c_uint)
pub unsafe fn wmode_raw(this: *const Self) -> c_uint
pub unsafe fn set_wmode_raw(this: *mut Self, val: c_uint)
pub fn bidi_level(&self) -> c_uint
pub fn set_bidi_level(&mut self, val: c_uint)
pub unsafe fn bidi_level_raw(this: *const Self) -> c_uint
pub unsafe fn set_bidi_level_raw(this: *mut Self, val: c_uint)
pub fn markup_dir(&self) -> c_uint
pub fn set_markup_dir(&mut self, val: c_uint)
pub unsafe fn markup_dir_raw(this: *const Self) -> c_uint
pub unsafe fn set_markup_dir_raw(this: *mut Self, val: c_uint)
pub fn language(&self) -> c_uint
pub fn set_language(&mut self, val: c_uint)
pub unsafe fn language_raw(this: *const Self) -> c_uint
pub unsafe fn set_language_raw(this: *mut Self, val: c_uint)
pub fn new_bitfield_1( wmode: c_uint, bidi_level: c_uint, markup_dir: c_uint, language: c_uint, ) -> __BindgenBitfieldUnit<[u8; 4]>
Trait Implementations§
Source§impl Clone for fz_text_span
impl Clone for fz_text_span
Source§fn clone(&self) -> fz_text_span
fn clone(&self) -> fz_text_span
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_text_span
impl Debug for fz_text_span
impl Copy for fz_text_span
Auto Trait Implementations§
impl Freeze for fz_text_span
impl RefUnwindSafe for fz_text_span
impl !Send for fz_text_span
impl !Sync for fz_text_span
impl Unpin for fz_text_span
impl UnwindSafe for fz_text_span
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