pub struct Package {
pub name: String,
pub version: String,
pub path: PathBuf,
pub local_dependencies: Vec<String>,
}Expand description
Package information in monorepo
Fields§
§name: StringPackage name
version: StringPackage version
path: PathBufPath to package directory
local_dependencies: Vec<String>Dependencies within the monorepo
Trait Implementations§
impl Eq for Package
impl StructuralPartialEq for Package
Auto Trait Implementations§
impl Freeze for Package
impl RefUnwindSafe for Package
impl Send for Package
impl Sync for Package
impl Unpin for Package
impl UnsafeUnpin for Package
impl UnwindSafe for Package
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