pub struct TextWord {
pub text: String,
pub x: f64,
pub y: f64,
pub width: f64,
pub font_size: f64,
}Expand description
A word: a sequence of characters not separated by large gaps.
Fields§
§text: String§x: f64§y: f64§width: f64§font_size: f64Trait Implementations§
Auto Trait Implementations§
impl Freeze for TextWord
impl RefUnwindSafe for TextWord
impl Send for TextWord
impl Sync for TextWord
impl Unpin for TextWord
impl UnsafeUnpin for TextWord
impl UnwindSafe for TextWord
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more