pub struct ArchiveLocation {
pub archive_id: u16,
pub offset: u64,
pub size: u32,
}Expand description
Location of a file within an archive
Fields§
§archive_id: u16Archive file number (data.XXX)
offset: u64Offset within the archive file
size: u32Size of the compressed data
Trait Implementations§
Source§impl Clone for ArchiveLocation
impl Clone for ArchiveLocation
Source§fn clone(&self) -> ArchiveLocation
fn clone(&self) -> ArchiveLocation
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 ArchiveLocation
impl Debug for ArchiveLocation
Source§impl PartialEq for ArchiveLocation
impl PartialEq for ArchiveLocation
impl Copy for ArchiveLocation
impl Eq for ArchiveLocation
impl StructuralPartialEq for ArchiveLocation
Auto Trait Implementations§
impl Freeze for ArchiveLocation
impl RefUnwindSafe for ArchiveLocation
impl Send for ArchiveLocation
impl Sync for ArchiveLocation
impl Unpin for ArchiveLocation
impl UnwindSafe for ArchiveLocation
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