pub enum MaybeWorkspace<T> {
Workspace(TomlWorkspaceField),
Defined(T),
}
Expand description
Enum that allows for the parsing of field.workspace = true
in a Cargo.toml
It allows for things to be inherited from a workspace or defined as needed
Variants
Workspace(TomlWorkspaceField)
Defined(T)
Trait Implementations
sourceimpl<T: Clone> Clone for MaybeWorkspace<T>
impl<T: Clone> Clone for MaybeWorkspace<T>
sourcefn clone(&self) -> MaybeWorkspace<T>
fn clone(&self) -> MaybeWorkspace<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<T: Debug> Debug for MaybeWorkspace<T>
impl<T: Debug> Debug for MaybeWorkspace<T>
sourceimpl<'de, T> Deserialize<'de> for MaybeWorkspace<T> where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for MaybeWorkspace<T> where
T: Deserialize<'de>,
sourcefn 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
Auto Trait Implementations
impl<T> RefUnwindSafe for MaybeWorkspace<T> where
T: RefUnwindSafe,
impl<T> Send for MaybeWorkspace<T> where
T: Send,
impl<T> Sync for MaybeWorkspace<T> where
T: Sync,
impl<T> Unpin for MaybeWorkspace<T> where
T: Unpin,
impl<T> UnwindSafe for MaybeWorkspace<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more