pub struct PluginInstallationEntry {
pub scope: String,
pub project_path: Option<String>,
pub install_path: String,
pub version: Option<String>,
pub git_commit_sha: Option<String>,
}Expand description
Installation entry in installed_plugins_v2.json
Fields§
§scope: String§project_path: Option<String>§install_path: String§version: Option<String>§git_commit_sha: Option<String>Trait Implementations§
Source§impl Clone for PluginInstallationEntry
impl Clone for PluginInstallationEntry
Source§fn clone(&self) -> PluginInstallationEntry
fn clone(&self) -> PluginInstallationEntry
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 PluginInstallationEntry
impl RefUnwindSafe for PluginInstallationEntry
impl Send for PluginInstallationEntry
impl Sync for PluginInstallationEntry
impl Unpin for PluginInstallationEntry
impl UnsafeUnpin for PluginInstallationEntry
impl UnwindSafe for PluginInstallationEntry
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