pub enum Codename {
Sid,
Trixie(Option<Extension>),
Bookworm(Option<Extension>),
Bullseye(Option<Extension>),
RCBuggy,
}
Expand description
Debian archive codenames
This enum describes the codenames names found in the Debian archive.
Variants§
Sid
The unstable suite
Trixie(Option<Extension>)
The testing suite
Bookworm(Option<Extension>)
The stable suite
Bullseye(Option<Extension>)
The oldstable suite
RCBuggy
The experimental suite
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Codename
impl<'de> Deserialize<'de> for Codename
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<Codename> for SuiteOrCodename
impl From<Codename> for SuiteOrCodename
Source§impl From<SuiteOrCodename> for Codename
impl From<SuiteOrCodename> for Codename
Source§fn from(value: SuiteOrCodename) -> Self
fn from(value: SuiteOrCodename) -> Self
Converts to this type from the input type.
impl Copy for Codename
impl Eq for Codename
impl StructuralPartialEq for Codename
Auto Trait Implementations§
impl Freeze for Codename
impl RefUnwindSafe for Codename
impl Send for Codename
impl Sync for Codename
impl Unpin for Codename
impl UnwindSafe for Codename
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.