Enum assorted_debian_utils::archive::Suite
source · pub enum Suite {
Unstable,
Testing(Option<Extension>),
Stable(Option<Extension>),
OldStable(Option<Extension>),
Experimental,
}
Expand description
Debian archive suites
This enum describes the suite names found in the Debian archive.
Variants§
Unstable
The unstable suite
Testing(Option<Extension>)
The testing suite
Stable(Option<Extension>)
The stable suite
OldStable(Option<Extension>)
The oldstable suite
Experimental
The experimental suite
Trait Implementations§
source§impl<'de> Deserialize<'de> for Suite
impl<'de> Deserialize<'de> for Suite
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<Suite> for SuiteOrCodename
impl From<Suite> for SuiteOrCodename
source§impl From<SuiteOrCodename> for Suite
impl From<SuiteOrCodename> for Suite
source§fn from(value: SuiteOrCodename) -> Self
fn from(value: SuiteOrCodename) -> Self
Converts to this type from the input type.
source§impl PartialEq<Suite> for Suite
impl PartialEq<Suite> for Suite
impl Copy for Suite
impl Eq for Suite
impl StructuralEq for Suite
impl StructuralPartialEq for Suite
Auto Trait Implementations§
impl RefUnwindSafe for Suite
impl Send for Suite
impl Sync for Suite
impl Unpin for Suite
impl UnwindSafe for Suite
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.