pub enum ProjectAction {
ExecCommand {
command: String,
description: String,
},
NoAction,
}Expand description
Action to take for project initialization or tooling sync
Variants§
Trait Implementations§
Source§impl Clone for ProjectAction
impl Clone for ProjectAction
Source§fn clone(&self) -> ProjectAction
fn clone(&self) -> ProjectAction
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 ProjectAction
impl RefUnwindSafe for ProjectAction
impl Send for ProjectAction
impl Sync for ProjectAction
impl Unpin for ProjectAction
impl UnwindSafe for ProjectAction
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