pub struct ExtendedProperties {
pub xmlns: String,
pub xmlns_vt: Option<String>,
pub application: Option<String>,
pub doc_security: Option<u32>,
pub scale_crop: Option<bool>,
pub company: Option<String>,
pub links_up_to_date: Option<bool>,
pub shared_doc: Option<bool>,
pub hyperlinks_changed: Option<bool>,
pub app_version: Option<String>,
pub template: Option<String>,
pub manager: Option<String>,
}Expand description
Extended (application) properties (docProps/app.xml).
Fields§
§xmlns: String§xmlns_vt: Option<String>§application: Option<String>§doc_security: Option<u32>§scale_crop: Option<bool>§company: Option<String>§links_up_to_date: Option<bool>§hyperlinks_changed: Option<bool>§app_version: Option<String>§template: Option<String>§manager: Option<String>Implementations§
Source§impl ExtendedProperties
impl ExtendedProperties
Sourcepub fn with_defaults() -> Self
pub fn with_defaults() -> Self
Create a new ExtendedProperties with the standard namespace set.
Trait Implementations§
Source§impl Clone for ExtendedProperties
impl Clone for ExtendedProperties
Source§fn clone(&self) -> ExtendedProperties
fn clone(&self) -> ExtendedProperties
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 ExtendedProperties
impl Debug for ExtendedProperties
Source§impl Default for ExtendedProperties
impl Default for ExtendedProperties
Source§fn default() -> ExtendedProperties
fn default() -> ExtendedProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExtendedProperties
impl<'de> Deserialize<'de> for ExtendedProperties
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
Source§impl PartialEq for ExtendedProperties
impl PartialEq for ExtendedProperties
Source§impl Serialize for ExtendedProperties
impl Serialize for ExtendedProperties
impl StructuralPartialEq for ExtendedProperties
Auto Trait Implementations§
impl Freeze for ExtendedProperties
impl RefUnwindSafe for ExtendedProperties
impl Send for ExtendedProperties
impl Sync for ExtendedProperties
impl Unpin for ExtendedProperties
impl UnwindSafe for ExtendedProperties
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