pub struct ShowTextArray(/* private fields */);Expand description
TJ operator.
Show zero or more text strings, allowing individual glyph positioning. Each element of the array is either a string or a number:
- in the case of a string, the operator shows the text;
- in the case of a number, the operator adjust the text position by that amount (i.e. translate the text matrix). Expressed in thousandths of text space units. That amount is subtracted from the current “selected coordinate”, depending on the writing mode.
[(5)-6(1)-6(,)-2( )-2(A)] TJTrait Implementations§
Source§impl Clone for ShowTextArray
impl Clone for ShowTextArray
Source§fn clone(&self) -> ShowTextArray
fn clone(&self) -> ShowTextArray
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 moreSource§impl Debug for ShowTextArray
impl Debug for ShowTextArray
Source§impl Display for ShowTextArray
impl Display for ShowTextArray
Source§impl<'de> Extract<'de> for ShowTextArray
impl<'de> Extract<'de> for ShowTextArray
Source§impl From<ShowTextArray> for TextOperator
impl From<ShowTextArray> for TextOperator
Source§fn from(op: ShowTextArray) -> Self
fn from(op: ShowTextArray) -> Self
Converts to this type from the input type.
Source§impl From<ShowTextArray> for TextShowingOperator
impl From<ShowTextArray> for TextShowingOperator
Source§fn from(v: ShowTextArray) -> TextShowingOperator
fn from(v: ShowTextArray) -> TextShowingOperator
Converts to this type from the input type.
Source§impl PartialEq for ShowTextArray
impl PartialEq for ShowTextArray
Source§fn eq(&self, other: &ShowTextArray) -> bool
fn eq(&self, other: &ShowTextArray) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TextOperation for ShowTextArray
impl TextOperation for ShowTextArray
Source§impl TryInto<ShowTextArray> for TextShowingOperator
impl TryInto<ShowTextArray> for TextShowingOperator
impl StructuralPartialEq for ShowTextArray
Auto Trait Implementations§
impl Freeze for ShowTextArray
impl RefUnwindSafe for ShowTextArray
impl Send for ShowTextArray
impl Sync for ShowTextArray
impl Unpin for ShowTextArray
impl UnsafeUnpin for ShowTextArray
impl UnwindSafe for ShowTextArray
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