[][src]Struct mupdf::PdfWriteOptions

pub struct PdfWriteOptions { /* fields omitted */ }

Implementations

impl PdfWriteOptions[src]

pub fn incremental(&self) -> bool[src]

pub fn set_incremental(&mut self, value: bool) -> &mut Self[src]

pub fn pretty(&self) -> bool[src]

pub fn set_pretty(&mut self, value: bool) -> &mut Self[src]

pub fn ascii(&self) -> bool[src]

pub fn set_ascii(&mut self, value: bool) -> &mut Self[src]

pub fn compress(&self) -> bool[src]

pub fn set_compress(&mut self, value: bool) -> &mut Self[src]

pub fn compress_images(&self) -> bool[src]

pub fn set_compress_images(&mut self, value: bool) -> &mut Self[src]

pub fn compress_fonts(&self) -> bool[src]

pub fn set_compress_fonts(&mut self, value: bool) -> &mut Self[src]

pub fn decompress(&self) -> bool[src]

pub fn set_decompress(&mut self, value: bool) -> &mut Self[src]

pub fn garbage(&self) -> bool[src]

pub fn set_garbage(&mut self, value: bool) -> &mut Self[src]

pub fn linear(self) -> bool[src]

pub fn set_linear(&mut self, value: bool) -> &mut Self[src]

pub fn clean(&self) -> bool[src]

pub fn set_clean(&mut self, value: bool) -> &mut Self[src]

pub fn sanitize(&self) -> bool[src]

pub fn set_sanitize(&mut self, value: bool) -> &mut Self[src]

pub fn appearance(&self) -> bool[src]

pub fn set_appearance(&mut self, value: bool) -> &mut Self[src]

pub fn encryption(&self) -> Encryption[src]

pub fn set_encryption(&mut self, value: Encryption) -> &mut Self[src]

pub fn permissions(&self) -> Permission[src]

pub fn set_permissions(&mut self, value: Permission) -> &mut Self[src]

pub fn owner_password(&self) -> &str[src]

pub fn set_owner_password(&mut self, pwd: &str) -> &mut Self[src]

pub fn user_password(&self) -> &str[src]

pub fn set_user_password(&mut self, pwd: &str) -> &mut Self[src]

Trait Implementations

impl Clone for PdfWriteOptions[src]

impl Copy for PdfWriteOptions[src]

impl Default for PdfWriteOptions[src]

Auto Trait Implementations

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.