pub enum ChannelType {
NixosStable {
year: u32,
month: u32,
},
NixpkgsStable {
year: u32,
month: u32,
},
Unstable,
HomeManagerRelease {
year: u32,
month: u32,
},
NixDarwinStable {
year: u32,
month: u32,
},
BareVersion {
year: u32,
month: u32,
},
Unknown,
}Expand description
Detected channel type from a ref string.
Variants§
NixosStable
nixos-YY.MM (e.g., nixos-24.11)
NixpkgsStable
nixpkgs-YY.MM (e.g., nixpkgs-24.11)
Unstable
Unstable/rolling branches (nixos-unstable, nixpkgs-unstable, master, main)
HomeManagerRelease
home-manager release-YY.MM
NixDarwinStable
nix-darwin-YY.MM
BareVersion
Bare version YY.MM (no prefix)
Unknown
Not a recognized channel pattern
Implementations§
Trait Implementations§
Source§impl Clone for ChannelType
impl Clone for ChannelType
Source§fn clone(&self) -> ChannelType
fn clone(&self) -> ChannelType
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 ChannelType
impl Debug for ChannelType
Source§impl PartialEq for ChannelType
impl PartialEq for ChannelType
impl StructuralPartialEq for ChannelType
Auto Trait Implementations§
impl Freeze for ChannelType
impl RefUnwindSafe for ChannelType
impl Send for ChannelType
impl Sync for ChannelType
impl Unpin for ChannelType
impl UnwindSafe for ChannelType
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more