[][src]Struct pdf_create::low::Resources

pub struct Resources<'a> {
    pub font: ResDictRes<Font<'a>>,
    pub x_object: ResDictRes<XObject>,
    pub proc_set: &'a [ProcSet],
}

The resources of a page

Fields

font: ResDictRes<Font<'a>>

A dict of font resources

x_object: ResDictRes<XObject>

A dict of embedded object resources

proc_set: &'a [ProcSet]

A set of valid procedures

Trait Implementations

impl<'_> Serialize for Resources<'_>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Resources<'a>

impl<'a> Send for Resources<'a>

impl<'a> Sync for Resources<'a>

impl<'a> Unpin for Resources<'a>

impl<'a> UnwindSafe for Resources<'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.