[][src]Struct pdf_create::common::ObjRef

pub struct ObjRef {
    pub id: u64,
    pub gen: u16,
}

A reference to an object

Fields

id: u64

The index within the file

gen: u16

The generation number

Trait Implementations

impl Clone for ObjRef[src]

impl Copy for ObjRef[src]

impl Debug for ObjRef[src]

impl Eq for ObjRef[src]

impl PartialEq<ObjRef> for ObjRef[src]

impl Serialize for ObjRef[src]

impl StructuralEq for ObjRef[src]

impl StructuralPartialEq for ObjRef[src]

Auto Trait Implementations

impl RefUnwindSafe for ObjRef

impl Send for ObjRef

impl Sync for ObjRef

impl Unpin for ObjRef

impl UnwindSafe for ObjRef

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.