pub struct InstalledRecord {
pub name: String,
pub version: String,
pub artifact_path: PathBuf,
pub manifest: Manifest,
}Expand description
The on-disk record for an installed plugin: the artifact path plus the cached manifest.
Fields§
§name: String§version: String§artifact_path: PathBuf§manifest: ManifestTrait Implementations§
Source§impl Clone for InstalledRecord
impl Clone for InstalledRecord
Source§fn clone(&self) -> InstalledRecord
fn clone(&self) -> InstalledRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InstalledRecord
impl RefUnwindSafe for InstalledRecord
impl Send for InstalledRecord
impl Sync for InstalledRecord
impl Unpin for InstalledRecord
impl UnsafeUnpin for InstalledRecord
impl UnwindSafe for InstalledRecord
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