pub struct ArchiveFileEntry {
pub path: String,
pub size: u64,
/* private fields */
}Expand description
A single file entry within an archive.
Fields§
§path: StringNormalized forward-slash relative path (e.g. textures/sky.dds).
size: u64Uncompressed file size in bytes.
Trait Implementations§
Source§impl Clone for ArchiveFileEntry
impl Clone for ArchiveFileEntry
Source§fn clone(&self) -> ArchiveFileEntry
fn clone(&self) -> ArchiveFileEntry
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 moreAuto Trait Implementations§
impl Freeze for ArchiveFileEntry
impl RefUnwindSafe for ArchiveFileEntry
impl Send for ArchiveFileEntry
impl Sync for ArchiveFileEntry
impl Unpin for ArchiveFileEntry
impl UnsafeUnpin for ArchiveFileEntry
impl UnwindSafe for ArchiveFileEntry
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