pub(crate) struct PendingMarker {
pub(crate) x_pt: f32,
pub(crate) word: Word,
}Fields§
§x_pt: f32X position (page-relative, points from the page’s left edge) where the marker’s left edge should sit.
word: WordPre-shaped marker word. Width is informational only: the
marker is drawn outside current_left_pt so it doesn’t reserve
space in the text column.
Trait Implementations§
Source§impl Clone for PendingMarker
impl Clone for PendingMarker
Source§fn clone(&self) -> PendingMarker
fn clone(&self) -> PendingMarker
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 moreAuto Trait Implementations§
impl Freeze for PendingMarker
impl RefUnwindSafe for PendingMarker
impl Send for PendingMarker
impl Sync for PendingMarker
impl Unpin for PendingMarker
impl UnsafeUnpin for PendingMarker
impl UnwindSafe for PendingMarker
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,
§impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
§fn to_owned_obj(&self, data: FontData<'_>) -> U
fn to_owned_obj(&self, data: FontData<'_>) -> U
Convert this type into
T, using the provided data to resolve any offsets.