pub enum InstallationRepositorySelection {
All,
Selected,
}
Expand description
Describe whether all repositories have been selected or there’s a selection involved
JSON schema
{
"description": "Describe whether all repositories have been selected or there's a selection involved",
"type": "string",
"enum": [
"all",
"selected"
]
}
Variants§
Trait Implementations§
Source§impl Clone for InstallationRepositorySelection
impl Clone for InstallationRepositorySelection
Source§fn clone(&self) -> InstallationRepositorySelection
fn clone(&self) -> InstallationRepositorySelection
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<'de> Deserialize<'de> for InstallationRepositorySelection
impl<'de> Deserialize<'de> for InstallationRepositorySelection
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 From<&InstallationRepositorySelection> for InstallationRepositorySelection
impl From<&InstallationRepositorySelection> for InstallationRepositorySelection
Source§fn from(value: &InstallationRepositorySelection) -> Self
fn from(value: &InstallationRepositorySelection) -> Self
Converts to this type from the input type.
Source§impl Ord for InstallationRepositorySelection
impl Ord for InstallationRepositorySelection
Source§fn cmp(&self, other: &InstallationRepositorySelection) -> Ordering
fn cmp(&self, other: &InstallationRepositorySelection) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for InstallationRepositorySelection
impl PartialEq for InstallationRepositorySelection
Source§fn eq(&self, other: &InstallationRepositorySelection) -> bool
fn eq(&self, other: &InstallationRepositorySelection) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for InstallationRepositorySelection
impl PartialOrd for InstallationRepositorySelection
Source§impl TryFrom<&String> for InstallationRepositorySelection
impl TryFrom<&String> for InstallationRepositorySelection
Source§impl TryFrom<&str> for InstallationRepositorySelection
impl TryFrom<&str> for InstallationRepositorySelection
impl Copy for InstallationRepositorySelection
impl Eq for InstallationRepositorySelection
impl StructuralPartialEq for InstallationRepositorySelection
Auto Trait Implementations§
impl Freeze for InstallationRepositorySelection
impl RefUnwindSafe for InstallationRepositorySelection
impl Send for InstallationRepositorySelection
impl Sync for InstallationRepositorySelection
impl Unpin for InstallationRepositorySelection
impl UnwindSafe for InstallationRepositorySelection
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