pub struct BundleFileInfo {
pub offset: u64,
pub size: u64,
pub name: String,
}Expand description
Information about a file within the bundle
Represents a single file entry in the bundle’s directory structure.
Fields§
§offset: u64Offset within the bundle data
size: u64Size of the file
name: StringFile name
Implementations§
Trait Implementations§
Source§impl Clone for BundleFileInfo
impl Clone for BundleFileInfo
Source§fn clone(&self) -> BundleFileInfo
fn clone(&self) -> BundleFileInfo
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 BundleFileInfo
impl Debug for BundleFileInfo
Source§impl Default for BundleFileInfo
impl Default for BundleFileInfo
Source§fn default() -> BundleFileInfo
fn default() -> BundleFileInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BundleFileInfo
impl<'de> Deserialize<'de> for BundleFileInfo
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
Auto Trait Implementations§
impl Freeze for BundleFileInfo
impl RefUnwindSafe for BundleFileInfo
impl Send for BundleFileInfo
impl Sync for BundleFileInfo
impl Unpin for BundleFileInfo
impl UnwindSafe for BundleFileInfo
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