pub enum AlpineRepo {
EdgeMain,
EdgeCommunity,
EdgeTesting,
V321Main,
V321Community,
V320Main,
V320Community,
V319Main,
V319Community,
V318Main,
V318Community,
}Expand description
Available Alpine Linux repositories.
Variants§
EdgeMain
Edge main repository
EdgeCommunity
Edge community repository
EdgeTesting
Edge testing repository (unstable)
V321Main
Alpine 3.21 main repository
V321Community
Alpine 3.21 community repository
V320Main
Alpine 3.20 main repository
V320Community
Alpine 3.20 community repository
V319Main
Alpine 3.19 main repository
V319Community
Alpine 3.19 community repository
V318Main
Alpine 3.18 main repository
V318Community
Alpine 3.18 community repository
Implementations§
Source§impl AlpineRepo
impl AlpineRepo
Sourcepub fn all() -> &'static [AlpineRepo]
pub fn all() -> &'static [AlpineRepo]
All available repositories.
Sourcepub fn edge() -> &'static [AlpineRepo]
pub fn edge() -> &'static [AlpineRepo]
Edge repositories only.
Sourcepub fn latest_stable() -> &'static [AlpineRepo]
pub fn latest_stable() -> &'static [AlpineRepo]
Latest stable version (v3.21).
Sourcepub fn stable() -> &'static [AlpineRepo]
pub fn stable() -> &'static [AlpineRepo]
Stable versions only (no edge, no testing).
Trait Implementations§
Source§impl Clone for AlpineRepo
impl Clone for AlpineRepo
Source§fn clone(&self) -> AlpineRepo
fn clone(&self) -> AlpineRepo
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 AlpineRepo
impl Debug for AlpineRepo
Source§impl Hash for AlpineRepo
impl Hash for AlpineRepo
Source§impl PartialEq for AlpineRepo
impl PartialEq for AlpineRepo
impl Copy for AlpineRepo
impl Eq for AlpineRepo
impl StructuralPartialEq for AlpineRepo
Auto Trait Implementations§
impl Freeze for AlpineRepo
impl RefUnwindSafe for AlpineRepo
impl Send for AlpineRepo
impl Sync for AlpineRepo
impl Unpin for AlpineRepo
impl UnwindSafe for AlpineRepo
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> 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