pub struct TileIndexEntry {
pub tile_offset: u64,
pub compressed_size: u32,
pub uncompressed_size: u32,
pub checksum: u32,
pub flags: u32,
}Expand description
One entry per tile in the trailing index.
Fields§
§tile_offset: u64Absolute byte offset of the TileHeader from start of file.
compressed_size: u32§uncompressed_size: u32§checksum: u32§flags: u32Implementations§
Trait Implementations§
Source§impl Clone for TileIndexEntry
impl Clone for TileIndexEntry
Source§fn clone(&self) -> TileIndexEntry
fn clone(&self) -> TileIndexEntry
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 TileIndexEntry
impl Debug for TileIndexEntry
Source§impl PartialEq for TileIndexEntry
impl PartialEq for TileIndexEntry
impl Copy for TileIndexEntry
impl Eq for TileIndexEntry
impl StructuralPartialEq for TileIndexEntry
Auto Trait Implementations§
impl Freeze for TileIndexEntry
impl RefUnwindSafe for TileIndexEntry
impl Send for TileIndexEntry
impl Sync for TileIndexEntry
impl Unpin for TileIndexEntry
impl UnsafeUnpin for TileIndexEntry
impl UnwindSafe for TileIndexEntry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.