pub struct FileResourceEntry {
pub size: u64,
pub flags: u8,
pub offset: u64,
pub original_size: u64,
}
Expand description
文件资源条目结构体 (_RESHDR_DISK_SHORT) 总大小:24 字节
Fields§
§size: u64
资源大小 (7 字节)
flags: u8
资源标志 (1 字节)
offset: u64
资源偏移 (8 字节)
original_size: u64
原始大小 (8 字节)
Trait Implementations§
Source§impl Clone for FileResourceEntry
impl Clone for FileResourceEntry
Source§fn clone(&self) -> FileResourceEntry
fn clone(&self) -> FileResourceEntry
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 moreAuto Trait Implementations§
impl Freeze for FileResourceEntry
impl RefUnwindSafe for FileResourceEntry
impl Send for FileResourceEntry
impl Sync for FileResourceEntry
impl Unpin for FileResourceEntry
impl UnwindSafe for FileResourceEntry
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