Struct pdf_writer::writers::PositionedItems

source ·
pub struct PositionedItems<'a> { /* private fields */ }
Expand description

Writer for a positioned items array.

This struct is created by ShowPositioned::items.

Implementations§

source§

impl<'a> PositionedItems<'a>

source

pub fn show(&mut self, text: Str<'_>) -> &mut Self

Show a continuous string without adjustments.

The encoding of the text depends on the font.

source

pub fn adjust(&mut self, amount: f32) -> &mut Self

Specify an adjustment between two glyphs.

The amount is specified in thousands of units of text space and is subtracted from the current writing-mode dependent coordinate.

Methods from Deref<Target = Array<'a>>§

source

pub fn len(&self) -> i32

The number of written items.

source

pub fn is_empty(&self) -> bool

Whether no items have been written so far.

source

pub fn push(&mut self) -> Obj<'_>

Start writing an arbitrary item.

source

pub fn item<T: Primitive>(&mut self, value: T) -> &mut Self

Write an item with a primitive value.

This is a shorthand for array.push().primitive(value).

source

pub fn items<T: Primitive>( &mut self, values: impl IntoIterator<Item = T> ) -> &mut Self

Write a sequence of items with primitive values.

Trait Implementations§

source§

impl<'a> Deref for PositionedItems<'a>

§

type Target = Array<'a>

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<'a> DerefMut for PositionedItems<'a>

source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.

Auto Trait Implementations§

§

impl<'a> Freeze for PositionedItems<'a>

§

impl<'a> RefUnwindSafe for PositionedItems<'a>

§

impl<'a> Send for PositionedItems<'a>

§

impl<'a> Sync for PositionedItems<'a>

§

impl<'a> Unpin for PositionedItems<'a>

§

impl<'a> !UnwindSafe for PositionedItems<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> Finish for T

source§

fn finish(self)

Does nothing but move self, equivalent to drop.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.