[][src]Struct pdf_create::high::Res

pub struct Res<'a> {
    pub fonts: Vec<Font<'a>>,
    pub font_dicts: Vec<DictResource<Font<'a>>>,
    pub x_objects: Vec<XObject>,
    pub x_object_dicts: Vec<DictResource<XObject>>,
    pub char_procs: Vec<CharProc<'a>>,
    pub encodings: Vec<Encoding<'a>>,
}

The global context for lowering

Fields

fonts: Vec<Font<'a>>

Font resources

font_dicts: Vec<DictResource<Font<'a>>>

Font dict resources

x_objects: Vec<XObject>

Embedded object resources

x_object_dicts: Vec<DictResource<XObject>>

Embedded object dict resources

char_procs: Vec<CharProc<'a>>

Char Procedure resources

encodings: Vec<Encoding<'a>>

Encoding resources

Trait Implementations

impl<'a> Debug for Res<'a>[src]

impl<'a> Default for Res<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Res<'a>

impl<'a> Send for Res<'a>

impl<'a> Sync for Res<'a>

impl<'a> Unpin for Res<'a>

impl<'a> UnwindSafe for Res<'a>

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.