pub struct PluginInstallOutcome {
pub plugin_name: String,
pub install_dir: PathBuf,
pub already_installed: bool,
pub source: String,
}Fields§
§plugin_name: String§install_dir: PathBuf§already_installed: bool§source: StringTrait Implementations§
Source§impl Clone for PluginInstallOutcome
impl Clone for PluginInstallOutcome
Source§fn clone(&self) -> PluginInstallOutcome
fn clone(&self) -> PluginInstallOutcome
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 PluginInstallOutcome
impl RefUnwindSafe for PluginInstallOutcome
impl Send for PluginInstallOutcome
impl Sync for PluginInstallOutcome
impl Unpin for PluginInstallOutcome
impl UnsafeUnpin for PluginInstallOutcome
impl UnwindSafe for PluginInstallOutcome
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