pub struct ArchiveEntryInfo {
pub range: Range<usize>,
pub identifier: Vec<u8>,
}Fields§
§range: Range<usize>The range within the file that contains the archive entry (not including the entry header).
identifier: Vec<u8>Trait Implementations§
Source§impl Clone for ArchiveEntryInfo
impl Clone for ArchiveEntryInfo
Source§fn clone(&self) -> ArchiveEntryInfo
fn clone(&self) -> ArchiveEntryInfo
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 Debug for ArchiveEntryInfo
impl Debug for ArchiveEntryInfo
Source§impl<'de> Deserialize<'de> for ArchiveEntryInfo
impl<'de> Deserialize<'de> for ArchiveEntryInfo
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
Source§impl PartialEq for ArchiveEntryInfo
impl PartialEq for ArchiveEntryInfo
Source§impl Serialize for ArchiveEntryInfo
impl Serialize for ArchiveEntryInfo
impl Eq for ArchiveEntryInfo
impl StructuralPartialEq for ArchiveEntryInfo
Auto Trait Implementations§
impl Freeze for ArchiveEntryInfo
impl RefUnwindSafe for ArchiveEntryInfo
impl Send for ArchiveEntryInfo
impl Sync for ArchiveEntryInfo
impl Unpin for ArchiveEntryInfo
impl UnwindSafe for ArchiveEntryInfo
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