pub enum WorkspaceShape {
CargoWorkspaceMembers,
NpmWorkspacesField,
SinglePackageOnly,
ComposerPathRepositories,
PnpmWorkspaceYaml,
}Variants§
CargoWorkspaceMembers
[workspace] members = [...] in a top-level TOML.
NpmWorkspacesField
workspaces array in package.json (or packages field).
SinglePackageOnly
Single-package only; no native workspace shape.
ComposerPathRepositories
Composer monorepo (path repositories).
PnpmWorkspaceYaml
pnpm workspace via pnpm-workspace.yaml.
Trait Implementations§
Source§impl Clone for WorkspaceShape
impl Clone for WorkspaceShape
Source§fn clone(&self) -> WorkspaceShape
fn clone(&self) -> WorkspaceShape
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 moreimpl Copy for WorkspaceShape
Source§impl Debug for WorkspaceShape
impl Debug for WorkspaceShape
Source§impl<'de> Deserialize<'de> for WorkspaceShape
impl<'de> Deserialize<'de> for WorkspaceShape
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for WorkspaceShape
Source§impl PartialEq for WorkspaceShape
impl PartialEq for WorkspaceShape
Source§fn eq(&self, other: &WorkspaceShape) -> bool
fn eq(&self, other: &WorkspaceShape) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WorkspaceShape
impl Serialize for WorkspaceShape
impl StructuralPartialEq for WorkspaceShape
Auto Trait Implementations§
impl Freeze for WorkspaceShape
impl RefUnwindSafe for WorkspaceShape
impl Send for WorkspaceShape
impl Sync for WorkspaceShape
impl Unpin for WorkspaceShape
impl UnsafeUnpin for WorkspaceShape
impl UnwindSafe for WorkspaceShape
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.