pub struct PackTargetEntry {
pub name: String,
pub category: String,
pub file_path: String,
pub size_bytes: usize,
pub sha256: String,
}Expand description
An individual asset file entry within the package.
Fields§
§name: String§category: String§file_path: String§size_bytes: usize§sha256: StringTrait Implementations§
Source§impl Clone for PackTargetEntry
impl Clone for PackTargetEntry
Source§fn clone(&self) -> PackTargetEntry
fn clone(&self) -> PackTargetEntry
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 PackTargetEntry
impl Debug for PackTargetEntry
Source§impl<'de> Deserialize<'de> for PackTargetEntry
impl<'de> Deserialize<'de> for PackTargetEntry
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 PackTargetEntry
impl RefUnwindSafe for PackTargetEntry
impl Send for PackTargetEntry
impl Sync for PackTargetEntry
impl Unpin for PackTargetEntry
impl UnsafeUnpin for PackTargetEntry
impl UnwindSafe for PackTargetEntry
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