pub struct WorkspacePackage {
pub name: String,
pub path: PathBuf,
pub dev_script: String,
}Expand description
A package in a workspace that has a “dev” script.
Fields§
§name: String§path: PathBuf§dev_script: StringTrait Implementations§
Source§impl Clone for WorkspacePackage
impl Clone for WorkspacePackage
Source§fn clone(&self) -> WorkspacePackage
fn clone(&self) -> WorkspacePackage
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 WorkspacePackage
impl RefUnwindSafe for WorkspacePackage
impl Send for WorkspacePackage
impl Sync for WorkspacePackage
impl Unpin for WorkspacePackage
impl UnsafeUnpin for WorkspacePackage
impl UnwindSafe for WorkspacePackage
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