Struct pdf_writer::writers::DeviceNMixingHints

source ·
pub struct DeviceNMixingHints<'a> { /* private fields */ }
Expand description

Writer for a DeviceN mixing hints dictionary. PDF 1.6+.

This struct is created by DeviceNAttrs::mixing_hints.

Implementations§

source§

impl DeviceNMixingHints<'_>

source

pub fn solidities(&mut self) -> TypedDict<'_, f32>

Start writing the /Solidities dictionary.

Each key in the dictionary is a colorant name and each value is a number between 0 and 1 indicating the relative solidity of the colorant.

source

pub fn printing_order<'n>( &mut self, order: impl IntoIterator<Item = Name<'n>> ) -> &mut Self

Write the /PrintingOrder attribute.

Required if /Solidities is present. An array of colorant names in the order in which they should be printed.

source

pub fn dot_gain(&mut self) -> TypedDict<'_, f32>

Start writing the /DotGain dictionary.

Each key in the dictionary is a colorant name and each value is a number between 0 and 1 indicating the dot gain of the colorant.

Trait Implementations§

source§

impl<'a, 'any> Rewrite<'a> for DeviceNMixingHints<'any>

§

type Output = DeviceNMixingHints<'a>

The writer with the rewritten lifetime.
source§

impl<'a> Writer<'a> for DeviceNMixingHints<'a>

source§

fn start(obj: Obj<'a>) -> Self

Start writing the object.

Auto Trait Implementations§

§

impl<'a> Freeze for DeviceNMixingHints<'a>

§

impl<'a> RefUnwindSafe for DeviceNMixingHints<'a>

§

impl<'a> Send for DeviceNMixingHints<'a>

§

impl<'a> Sync for DeviceNMixingHints<'a>

§

impl<'a> Unpin for DeviceNMixingHints<'a>

§

impl<'a> !UnwindSafe for DeviceNMixingHints<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> Finish for T

source§

fn finish(self)

Does nothing but move self, equivalent to drop.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.