pub enum WorkspacesField {
Globs(Vec<String>),
Config {
packages: Vec<String>,
nohoist: Option<Vec<String>>,
},
}
Variants§
Trait Implementations§
Source§impl Clone for WorkspacesField
impl Clone for WorkspacesField
Source§fn clone(&self) -> WorkspacesField
fn clone(&self) -> WorkspacesField
Returns a copy 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 moreSource§impl Debug for WorkspacesField
impl Debug for WorkspacesField
Source§impl<'de> Deserialize<'de> for WorkspacesField
impl<'de> Deserialize<'de> for WorkspacesField
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
Source§impl PartialEq for WorkspacesField
impl PartialEq for WorkspacesField
impl StructuralPartialEq for WorkspacesField
Auto Trait Implementations§
impl Freeze for WorkspacesField
impl RefUnwindSafe for WorkspacesField
impl Send for WorkspacesField
impl Sync for WorkspacesField
impl Unpin for WorkspacesField
impl UnwindSafe for WorkspacesField
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