pub struct SerializableDocumentMetadata {Show 36 fields
pub file_size: Option<u64>,
pub linearized: bool,
pub encrypted: bool,
pub has_forms: bool,
pub has_xfa: bool,
pub xfa_packets: usize,
pub has_xfa_scripts: bool,
pub xfa_script_nodes: usize,
pub has_hybrid_forms: bool,
pub form_field_count: usize,
pub has_javascript: bool,
pub has_embedded_files: bool,
pub has_signatures: bool,
pub has_richmedia: bool,
pub richmedia_annotations: usize,
pub richmedia_assets: usize,
pub richmedia_scripts: usize,
pub has_3d: bool,
pub threed_annotations: usize,
pub threed_u3d: usize,
pub threed_prc: usize,
pub has_audio: bool,
pub audio_annotations: usize,
pub has_video: bool,
pub video_annotations: usize,
pub has_dss: bool,
pub dss_vri_count: usize,
pub dss_certs: usize,
pub dss_ocsp: usize,
pub dss_crl: usize,
pub dss_timestamps: usize,
pub page_count: usize,
pub producer: Option<String>,
pub creator: Option<String>,
pub creation_date: Option<String>,
pub modification_date: Option<String>,
}Fields§
§file_size: Option<u64>§linearized: bool§encrypted: bool§has_forms: bool§has_xfa: bool§xfa_packets: usize§has_xfa_scripts: bool§xfa_script_nodes: usize§has_hybrid_forms: bool§form_field_count: usize§has_javascript: bool§has_embedded_files: bool§has_signatures: bool§has_richmedia: bool§richmedia_annotations: usize§richmedia_assets: usize§richmedia_scripts: usize§has_3d: bool§threed_annotations: usize§threed_u3d: usize§threed_prc: usize§has_audio: bool§audio_annotations: usize§has_video: bool§video_annotations: usize§has_dss: bool§dss_vri_count: usize§dss_certs: usize§dss_ocsp: usize§dss_crl: usize§dss_timestamps: usize§page_count: usize§producer: Option<String>§creator: Option<String>§creation_date: Option<String>§modification_date: Option<String>Trait Implementations§
Source§impl Clone for SerializableDocumentMetadata
impl Clone for SerializableDocumentMetadata
Source§fn clone(&self) -> SerializableDocumentMetadata
fn clone(&self) -> SerializableDocumentMetadata
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SerializableDocumentMetadata
impl Debug for SerializableDocumentMetadata
Source§impl<'de> Deserialize<'de> for SerializableDocumentMetadata
impl<'de> Deserialize<'de> for SerializableDocumentMetadata
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SerializableDocumentMetadata
impl RefUnwindSafe for SerializableDocumentMetadata
impl Send for SerializableDocumentMetadata
impl Sync for SerializableDocumentMetadata
impl Unpin for SerializableDocumentMetadata
impl UnwindSafe for SerializableDocumentMetadata
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more