pub struct AdobePdfPropertiesWriter<'a, 'n: 'a> { /* private fields */ }
Expand description
Writer for the property descriptions of the pdf
schema.
Created by AdobePdfDescsWriter::properties
.
Implementations§
source§impl<'a, 'n: 'a> AdobePdfPropertiesWriter<'a, 'n>
impl<'a, 'n: 'a> AdobePdfPropertiesWriter<'a, 'n>
sourcepub fn describe_keywords(&mut self) -> &mut Self
pub fn describe_keywords(&mut self) -> &mut Self
Describe the pdf:Keywords
property.
Optional even if present, see PDF/A-1 TechNote 0008.
sourcepub fn describe_pdf_version(&mut self) -> &mut Self
pub fn describe_pdf_version(&mut self) -> &mut Self
Describe the pdf:PDFVersion
property.
Optional even if present, see PDF/A-1 TechNote 0008.
sourcepub fn describe_producer(&mut self) -> &mut Self
pub fn describe_producer(&mut self) -> &mut Self
Describe the pdf:Producer
property.
Optional even if present, see PDF/A-1 TechNote 0008.
sourcepub fn describe_trapped(&mut self) -> &mut Self
pub fn describe_trapped(&mut self) -> &mut Self
Describe the pdf:Trapped
property.
sourcepub fn describe_all(self)
pub fn describe_all(self)
Describe all properties of the pdf
schema.
Methods from Deref<Target = PdfAExtPropertiesWriter<'a, 'n>>§
sourcepub fn add_property(&mut self) -> PdfAExtPropertyWriter<'_, 'n>
pub fn add_property(&mut self) -> PdfAExtPropertyWriter<'_, 'n>
Add a property.
Methods from Deref<Target = Array<'a, 'n>>§
sourcepub fn element_with_attrs(
&mut self,
attrs: impl IntoIterator<Item = (&'a str, &'a str)>,
) -> Element<'_, 'n>
pub fn element_with_attrs( &mut self, attrs: impl IntoIterator<Item = (&'a str, &'a str)>, ) -> Element<'_, 'n>
Start writing an element with attributes in the array.
Trait Implementations§
source§impl<'a, 'n> Deref for AdobePdfPropertiesWriter<'a, 'n>
impl<'a, 'n> Deref for AdobePdfPropertiesWriter<'a, 'n>
Auto Trait Implementations§
impl<'a, 'n> Freeze for AdobePdfPropertiesWriter<'a, 'n>
impl<'a, 'n> RefUnwindSafe for AdobePdfPropertiesWriter<'a, 'n>
impl<'a, 'n> Send for AdobePdfPropertiesWriter<'a, 'n>
impl<'a, 'n> Sync for AdobePdfPropertiesWriter<'a, 'n>
impl<'a, 'n> Unpin for AdobePdfPropertiesWriter<'a, 'n>
impl<'a, 'n> !UnwindSafe for AdobePdfPropertiesWriter<'a, 'n>
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