Struct allsorts_no_std::cff::Type1Data[][src]

pub struct Type1Data<'a> {
    pub encoding: Encoding<'a>,
    pub private_dict: PrivateDict,
    pub local_subr_index: Option<Index<'a>>,
}

Fields

encoding: Encoding<'a>private_dict: PrivateDictlocal_subr_index: Option<Index<'a>>

Trait Implementations

impl<'a> Clone for Type1Data<'a>[src]

impl<'a> WriteBinary<&'_ Type1Data<'a>> for Type1Data<'a>[src]

type Output = Type1DataOffsets

The type of the value returned by write.

Auto Trait Implementations

impl<'a> RefUnwindSafe for Type1Data<'a>

impl<'a> Send for Type1Data<'a>

impl<'a> Sync for Type1Data<'a>

impl<'a> Unpin for Type1Data<'a>

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

impl<T, HostType> WriteBinaryDep<HostType> for T where
    T: WriteBinary<HostType>, 
[src]

type Args = ()

The type of the arguments supplied to write_dep.

type Output = <T as WriteBinary<HostType>>::Output

The type of the value returned by write_dep.