pub struct Core<'a> {
pub title: Option<Cow<'a, str>>,
pub subject: Option<Cow<'a, str>>,
pub creator: Option<Cow<'a, str>>,
pub keywords: Option<Cow<'a, str>>,
pub description: Option<Cow<'a, str>>,
pub last_modified_by: Option<Cow<'a, str>>,
pub revision: Option<Cow<'a, str>>,
}
Fields
title: Option<Cow<'a, str>>
subject: Option<Cow<'a, str>>
creator: Option<Cow<'a, str>>
keywords: Option<Cow<'a, str>>
description: Option<Cow<'a, str>>
last_modified_by: Option<Cow<'a, str>>
revision: Option<Cow<'a, str>>
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for Core<'a>
impl<'a> Send for Core<'a>
impl<'a> Sync for Core<'a>
impl<'a> Unpin for Core<'a>
impl<'a> UnwindSafe for Core<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more