Struct pdf_writer::TypedArray

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

Writer for an array of items of a fixed type.

Implementations§

source§

impl<'a, T> TypedArray<'a, T>

source

pub fn wrap(array: Array<'a>) -> Self

Wrap an array to make it type-safe.

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 item(&mut self, value: T) -> &mut Self
where T: Primitive,

Write an item.

source

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

Write a sequence of items.

source

pub fn push<'b>(&'b mut self) -> <T as Rewrite<'_>>::Output
where T: Writer<'a> + Rewrite<'b>,

Start writing an item with the typed writer.

Returns T but with its lifetime rewritten from 'a to 'b.

Trait Implementations§

source§

impl<'a, 'any, T> Rewrite<'a> for TypedArray<'any, T>

§

type Output = TypedArray<'a, T>

The writer with the rewritten lifetime.
source§

impl<'a, T> Writer<'a> for TypedArray<'a, T>

source§

fn start(obj: Obj<'a>) -> Self

Start writing the object.

Auto Trait Implementations§

§

impl<'a, T> Freeze for TypedArray<'a, T>

§

impl<'a, T> RefUnwindSafe for TypedArray<'a, T>

§

impl<'a, T> Send for TypedArray<'a, T>

§

impl<'a, T> Sync for TypedArray<'a, T>

§

impl<'a, T> Unpin for TypedArray<'a, T>

§

impl<'a, T> !UnwindSafe for TypedArray<'a, T>

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.