pub struct DavLivePropertyMetadata<'a> {
pub creation_date: Option<SystemTime>,
pub display_name: Option<&'a str>,
pub content_language: Option<&'a str>,
pub content_length: Option<u64>,
pub content_type: Option<&'a str>,
pub etag: Option<&'a str>,
pub last_modified: Option<SystemTime>,
}Expand description
Metadata values fetched once for all standard content and validator properties.
Fields§
§creation_date: Option<SystemTime>§display_name: Option<&'a str>§content_language: Option<&'a str>§content_length: Option<u64>§content_type: Option<&'a str>§etag: Option<&'a str>A complete entity-tag value suitable for DAV:getetag.
last_modified: Option<SystemTime>Trait Implementations§
Source§impl<'a> Clone for DavLivePropertyMetadata<'a>
impl<'a> Clone for DavLivePropertyMetadata<'a>
Source§fn clone(&self) -> DavLivePropertyMetadata<'a>
fn clone(&self) -> DavLivePropertyMetadata<'a>
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<'a> Debug for DavLivePropertyMetadata<'a>
impl<'a> Debug for DavLivePropertyMetadata<'a>
Source§impl<'a> Default for DavLivePropertyMetadata<'a>
impl<'a> Default for DavLivePropertyMetadata<'a>
Source§fn default() -> DavLivePropertyMetadata<'a>
fn default() -> DavLivePropertyMetadata<'a>
Returns the “default value” for a type. Read more
impl<'a> Copy for DavLivePropertyMetadata<'a>
Auto Trait Implementations§
impl<'a> Freeze for DavLivePropertyMetadata<'a>
impl<'a> RefUnwindSafe for DavLivePropertyMetadata<'a>
impl<'a> Send for DavLivePropertyMetadata<'a>
impl<'a> Sync for DavLivePropertyMetadata<'a>
impl<'a> Unpin for DavLivePropertyMetadata<'a>
impl<'a> UnwindSafe for DavLivePropertyMetadata<'a>
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