pub struct CachedPack {
pub id: String,
pub version: String,
pub path: PathBuf,
pub sha256: String,
pub manifest: Option<RpackManifest>,
}Expand description
Cached rpack information
Fields§
§id: String§version: String§path: PathBuf§sha256: String§manifest: Option<RpackManifest>Trait Implementations§
Source§impl Clone for CachedPack
impl Clone for CachedPack
Source§fn clone(&self) -> CachedPack
fn clone(&self) -> CachedPack
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 CachedPack
impl RefUnwindSafe for CachedPack
impl Send for CachedPack
impl Sync for CachedPack
impl Unpin for CachedPack
impl UnwindSafe for CachedPack
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