pub struct InstallEntry {
pub path: String,
pub ckey: Vec<u8>,
pub size: u32,
pub tags: Vec<String>,
}
Expand description
Install file entry
Fields§
§path: String
File path relative to game root
ckey: Vec<u8>
Content key (CKey)
size: u32
File size
Tags associated with this file
Trait Implementations§
Source§impl Clone for InstallEntry
impl Clone for InstallEntry
Source§fn clone(&self) -> InstallEntry
fn clone(&self) -> InstallEntry
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 InstallEntry
impl RefUnwindSafe for InstallEntry
impl Send for InstallEntry
impl Sync for InstallEntry
impl Unpin for InstallEntry
impl UnwindSafe for InstallEntry
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