pub enum TextShowOp {
Tj,
TJ,
SingleQuote,
DoubleQuote,
}Expand description
Discriminator for ContentTextShow::operator.
Variants§
Tj
string Tj — show one string.
TJ
[(s1) num1 (s2) num2 …] TJ — show with per-element kerning.
SingleQuote
' string — move to the next line, then show (T* Tj).
DoubleQuote
"a_w a_c string“`` — set word + char spacing, move to next
line, then show.
Trait Implementations§
Source§impl Clone for TextShowOp
impl Clone for TextShowOp
Source§fn clone(&self) -> TextShowOp
fn clone(&self) -> TextShowOp
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TextShowOp
Source§impl Debug for TextShowOp
impl Debug for TextShowOp
impl Eq for TextShowOp
Source§impl PartialEq for TextShowOp
impl PartialEq for TextShowOp
Source§fn eq(&self, other: &TextShowOp) -> bool
fn eq(&self, other: &TextShowOp) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TextShowOp
Auto Trait Implementations§
impl Freeze for TextShowOp
impl RefUnwindSafe for TextShowOp
impl Send for TextShowOp
impl Sync for TextShowOp
impl Unpin for TextShowOp
impl UnsafeUnpin for TextShowOp
impl UnwindSafe for TextShowOp
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