pub struct FileOLESummary {
pub author: Option<Vec<String>>,
pub codepage: Option<Vec<String>>,
pub comment: Option<Vec<String>>,
pub company: Option<Vec<String>>,
pub create_time: Option<Vec<String>>,
pub last_printed: Option<Vec<String>>,
pub last_saved_by: Option<Vec<String>>,
pub last_saved_time: Option<Vec<String>>,
pub manager: Option<Vec<String>>,
pub subject: Option<Vec<String>>,
pub title: Option<Vec<String>>,
}Expand description
OLE Summary Model
Fields§
Author
codepage: Option<Vec<String>>Code Page
comment: Option<Vec<String>>Comment
company: Option<Vec<String>>Company
create_time: Option<Vec<String>>Creation Time
last_printed: Option<Vec<String>>Date Last Printed
last_saved_by: Option<Vec<String>>User Last Saved By
last_saved_time: Option<Vec<String>>Date Last Saved
manager: Option<Vec<String>>Manager
subject: Option<Vec<String>>Subject
title: Option<Vec<String>>Title
Trait Implementations§
Source§impl Debug for FileOLESummary
impl Debug for FileOLESummary
Source§impl Default for FileOLESummary
impl Default for FileOLESummary
Source§fn default() -> FileOLESummary
fn default() -> FileOLESummary
Returns the “default value” for a type. Read more
Source§impl Described<ElasticMeta> for FileOLESummary
impl Described<ElasticMeta> for FileOLESummary
Source§fn metadata() -> Descriptor<ElasticMeta>
fn metadata() -> Descriptor<ElasticMeta>
Get self description of this type
Source§impl<'de> Deserialize<'de> for FileOLESummary
impl<'de> Deserialize<'de> for FileOLESummary
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 FileOLESummary
impl RefUnwindSafe for FileOLESummary
impl Send for FileOLESummary
impl Sync for FileOLESummary
impl Unpin for FileOLESummary
impl UnwindSafe for FileOLESummary
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
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