pub enum TextOp {
Text(Vec<u8>),
Adjustment(f64),
}Expand description
A text operation within a TJ array.
Variants§
Text(Vec<u8>)
A text string to show.
Adjustment(f64)
A positioning adjustment (negative = move right, positive = move left).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TextOp
impl RefUnwindSafe for TextOp
impl Send for TextOp
impl Sync for TextOp
impl Unpin for TextOp
impl UnsafeUnpin for TextOp
impl UnwindSafe for TextOp
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