[][src]Struct pdf_create::write::PdfArr

#[must_use]pub struct PdfArr<'a, 'b> { /* fields omitted */ }

API to serialize an array

Implementations

impl<'a, 'b> PdfArr<'a, 'b>[src]

pub fn entry(&mut self, value: &dyn Serialize) -> Result<&mut Self>[src]

Write the next entry

pub fn entries<X: Serialize>(
    &mut self,
    i: impl IntoIterator<Item = X>
) -> Result<&mut Self>
[src]

Write entries from an iterator

pub fn finish(&mut self) -> Result<()>[src]

Close the array

Auto Trait Implementations

impl<'a, 'b> !RefUnwindSafe for PdfArr<'a, 'b>

impl<'a, 'b> !Send for PdfArr<'a, 'b>

impl<'a, 'b> !Sync for PdfArr<'a, 'b>

impl<'a, 'b> Unpin for PdfArr<'a, 'b> where
    'a: 'b, 

impl<'a, 'b> !UnwindSafe for PdfArr<'a, 'b>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.