pub struct ArchiveEntry {
pub name: String,
pub bytes: Vec<u8>,
}Fields§
§name: String§bytes: Vec<u8>Implementations§
Trait Implementations§
Source§impl Clone for ArchiveEntry
impl Clone for ArchiveEntry
Source§fn clone(&self) -> ArchiveEntry
fn clone(&self) -> ArchiveEntry
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 Debug for ArchiveEntry
impl Debug for ArchiveEntry
impl Eq for ArchiveEntry
Source§impl PartialEq for ArchiveEntry
impl PartialEq for ArchiveEntry
Source§fn eq(&self, other: &ArchiveEntry) -> bool
fn eq(&self, other: &ArchiveEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ArchiveEntry
Auto Trait Implementations§
impl Freeze for ArchiveEntry
impl RefUnwindSafe for ArchiveEntry
impl Send for ArchiveEntry
impl Sync for ArchiveEntry
impl Unpin for ArchiveEntry
impl UnsafeUnpin for ArchiveEntry
impl UnwindSafe for ArchiveEntry
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