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
sourceimpl<'de> Deserialize<'de> for Suite
impl<'de> Deserialize<'de> for Suite
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
sourceimpl From<Suite> for SuiteOrCodename
impl From<Suite> for SuiteOrCodename
sourceimpl From<SuiteOrCodename> for Suite
impl From<SuiteOrCodename> for Suite
sourcefn from(value: SuiteOrCodename) -> Self
fn from(value: SuiteOrCodename) -> Self
Converts to this type from the input type.
sourceimpl 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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
sourceimpl<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,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.