pub enum VersionScope {
All,
Specific(String),
Latest,
}Expand description
Version scope covered by a resolved command set.
Variants§
Trait Implementations§
Source§impl Clone for VersionScope
impl Clone for VersionScope
Source§fn clone(&self) -> VersionScope
fn clone(&self) -> VersionScope
Returns a duplicate 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 VersionScope
impl Debug for VersionScope
Source§impl<'de> Deserialize<'de> for VersionScope
impl<'de> Deserialize<'de> for VersionScope
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 VersionScope
impl PartialEq for VersionScope
Source§impl Serialize for VersionScope
impl Serialize for VersionScope
impl Eq for VersionScope
impl StructuralPartialEq for VersionScope
Auto Trait Implementations§
impl Freeze for VersionScope
impl RefUnwindSafe for VersionScope
impl Send for VersionScope
impl Sync for VersionScope
impl Unpin for VersionScope
impl UnwindSafe for VersionScope
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