Struct pdf_writer::writers::FileSpec

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

Writer for a file specification dictionary.

This struct is created by Annotation::file_spec, Reference::file_spec, and Action::file_spec.

Implementations§

source§

impl<'a> FileSpec<'a>

source

pub fn file_system(&mut self, system: Name<'_>) -> &mut Self

Write the /FS attribute to set the file system this entry relates to. If you set the system argument to Name(b"URL"), this becomes an URL specification.

source

pub fn path(&mut self, path: Str<'_>) -> &mut Self

Write the /F attribute to set the file path. Directories are indicated by /, independent of the platform.

source

pub fn unic_file(&mut self, path: TextStr<'_>) -> &mut Self

Write the /UF attribute to set a Unicode-compatible path. Directories are indicated by /, independent of the platform. PDF 1.7+.

source

pub fn volatile(&mut self, dont_cache: bool) -> &mut Self

Write the /V attribute to indicate whether not to cache the file.

source

pub fn description(&mut self, desc: TextStr<'_>) -> &mut Self

Write the /Desc attribute to set a file description. PDF 1.6+.

source

pub fn embedded_file(&mut self, id: Ref) -> &mut Self

Write the /EF attribute to reference an embedded file. PDF 1.3+.

This only sets an embedded file for the F attribute corresponding to the path method. You will need to write this dictionary manually if you need to set UF.

Methods from Deref<Target = Dict<'a>>§

source

pub fn len(&self) -> i32

The number of written pairs.

source

pub fn is_empty(&self) -> bool

Whether no pairs have been written so far.

source

pub fn insert(&mut self, key: Name<'_>) -> Obj<'_>

Start writing a pair with an arbitrary value.

source

pub fn pair<T: Primitive>(&mut self, key: Name<'_>, value: T) -> &mut Self

Write a pair with a primitive value.

This is a shorthand for dict.insert(key).primitive(value).

source

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

Write a sequence of pairs with primitive values.

Trait Implementations§

source§

impl<'a> Deref for FileSpec<'a>

§

type Target = Dict<'a>

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<'a> DerefMut for FileSpec<'a>

source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
source§

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

§

type Output = FileSpec<'a>

The writer with the rewritten lifetime.
source§

impl<'a> Writer<'a> for FileSpec<'a>

source§

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

Start writing the object.

Auto Trait Implementations§

§

impl<'a> Freeze for FileSpec<'a>

§

impl<'a> RefUnwindSafe for FileSpec<'a>

§

impl<'a> Send for FileSpec<'a>

§

impl<'a> Sync for FileSpec<'a>

§

impl<'a> Unpin for FileSpec<'a>

§

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