pub enum ProofSetup {
Builtin {
builtin: String,
},
Profile {
profile: String,
rendering_intent: Option<RenderingIntent>,
black_point_compensation: Option<bool>,
paper_white: Option<bool>,
},
}Expand description
TS printInformation.proofSetup union.
Variants§
Builtin
{ builtin: string; }
Profile
{ profile; renderingIntent?; blackPointCompensation?; paperWhite?; }
Trait Implementations§
Source§impl Clone for ProofSetup
impl Clone for ProofSetup
Source§fn clone(&self) -> ProofSetup
fn clone(&self) -> ProofSetup
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ProofSetup
impl RefUnwindSafe for ProofSetup
impl Send for ProofSetup
impl Sync for ProofSetup
impl Unpin for ProofSetup
impl UnsafeUnpin for ProofSetup
impl UnwindSafe for ProofSetup
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more