pub struct Word {
pub text: String,
pub bbox_width: f64,
pub bbox_height: f64,
pub position: TextPosition,
pub font_name: Option<String>,
pub font_size: f64,
pub font_character_width: f64,
}Fields§
§text: String§bbox_width: f64§bbox_height: f64§position: TextPosition§font_name: Option<String>§font_size: f64§font_character_width: f64Trait Implementations§
Auto Trait Implementations§
impl Freeze for Word
impl RefUnwindSafe for Word
impl Send for Word
impl Sync for Word
impl Unpin for Word
impl UnsafeUnpin for Word
impl UnwindSafe for Word
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