pub struct PnpmCatalogData {
pub catalogs: Vec<PnpmCatalog>,
}Expand description
Structured catalog data extracted from a pnpm-workspace.yaml file.
Fields§
§catalogs: Vec<PnpmCatalog>Catalogs found in the file. The default catalog (top-level catalog:)
always appears first with name = "default" when present; named
catalogs follow in YAML source order.
Trait Implementations§
Source§impl Clone for PnpmCatalogData
impl Clone for PnpmCatalogData
Source§fn clone(&self) -> PnpmCatalogData
fn clone(&self) -> PnpmCatalogData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PnpmCatalogData
impl Debug for PnpmCatalogData
Source§impl Default for PnpmCatalogData
impl Default for PnpmCatalogData
Source§fn default() -> PnpmCatalogData
fn default() -> PnpmCatalogData
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PnpmCatalogData
impl RefUnwindSafe for PnpmCatalogData
impl Send for PnpmCatalogData
impl Sync for PnpmCatalogData
impl Unpin for PnpmCatalogData
impl UnsafeUnpin for PnpmCatalogData
impl UnwindSafe for PnpmCatalogData
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