#[repr(C)]pub struct fz_stext_block {
pub type_: c_int,
pub bbox: fz_rect,
pub u: fz_stext_block__bindgen_ty_1,
pub prev: *mut fz_stext_block,
pub next: *mut fz_stext_block,
}Expand description
A text block is a list of lines of text (typically a paragraph),
or an image.
Fields§
§type_: c_int§bbox: fz_rect§u: fz_stext_block__bindgen_ty_1§prev: *mut fz_stext_block§next: *mut fz_stext_blockTrait Implementations§
Source§impl Clone for fz_stext_block
impl Clone for fz_stext_block
Source§fn clone(&self) -> fz_stext_block
fn clone(&self) -> fz_stext_block
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 moreimpl Copy for fz_stext_block
Auto Trait Implementations§
impl Freeze for fz_stext_block
impl RefUnwindSafe for fz_stext_block
impl !Send for fz_stext_block
impl !Sync for fz_stext_block
impl Unpin for fz_stext_block
impl UnwindSafe for fz_stext_block
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