pub struct ArchiveMetadataEntry<'a> {
pub name: Option<&'a [u8]>,
pub creation_time: Option<u64>,
}Fields§
§name: Option<&'a [u8]>§creation_time: Option<u64>Trait Implementations§
Source§impl<'a> Clone for ArchiveMetadataEntry<'a>
impl<'a> Clone for ArchiveMetadataEntry<'a>
Source§fn clone(&self) -> ArchiveMetadataEntry<'a>
fn clone(&self) -> ArchiveMetadataEntry<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ArchiveMetadataEntry<'a>
impl<'a> Debug for ArchiveMetadataEntry<'a>
Source§impl<'a> PartialEq for ArchiveMetadataEntry<'a>
impl<'a> PartialEq for ArchiveMetadataEntry<'a>
Source§fn eq(&self, other: &ArchiveMetadataEntry<'a>) -> bool
fn eq(&self, other: &ArchiveMetadataEntry<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> Copy for ArchiveMetadataEntry<'a>
impl<'a> Eq for ArchiveMetadataEntry<'a>
impl<'a> StructuralPartialEq for ArchiveMetadataEntry<'a>
Auto Trait Implementations§
impl<'a> Freeze for ArchiveMetadataEntry<'a>
impl<'a> RefUnwindSafe for ArchiveMetadataEntry<'a>
impl<'a> Send for ArchiveMetadataEntry<'a>
impl<'a> Sync for ArchiveMetadataEntry<'a>
impl<'a> Unpin for ArchiveMetadataEntry<'a>
impl<'a> UnsafeUnpin for ArchiveMetadataEntry<'a>
impl<'a> UnwindSafe for ArchiveMetadataEntry<'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