pub struct TextBlock {
pub id: usize,
pub text: String,
pub bounding_box: BoundingBox,
pub block_type: BlockType,
}Expand description
Text block
Fields§
§id: usize§text: String§bounding_box: BoundingBox§block_type: BlockTypeTrait Implementations§
Auto Trait Implementations§
impl Freeze for TextBlock
impl RefUnwindSafe for TextBlock
impl Send for TextBlock
impl Sync for TextBlock
impl Unpin for TextBlock
impl UnwindSafe for TextBlock
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