pub enum AptRepo {
Show 21 variants
StableMain,
StableContrib,
StableNonFree,
StableNonFreeFirmware,
StableBackportsMain,
StableBackportsContrib,
StableBackportsNonFree,
TestingMain,
TestingContrib,
TestingNonFree,
TestingNonFreeFirmware,
UnstableMain,
UnstableContrib,
UnstableNonFree,
UnstableNonFreeFirmware,
ExperimentalMain,
ExperimentalContrib,
ExperimentalNonFree,
OldstableMain,
OldstableContrib,
OldstableNonFree,
}Expand description
Available Debian repositories.
Variants§
StableMain
Stable main repository
StableContrib
Stable contrib repository
StableNonFree
Stable non-free repository
StableNonFreeFirmware
Stable non-free-firmware repository
StableBackportsMain
Stable backports main
StableBackportsContrib
Stable backports contrib
StableBackportsNonFree
Stable backports non-free
TestingMain
Testing main repository
TestingContrib
Testing contrib repository
TestingNonFree
Testing non-free repository
TestingNonFreeFirmware
Testing non-free-firmware repository
UnstableMain
Unstable main repository
UnstableContrib
Unstable contrib repository
UnstableNonFree
Unstable non-free repository
UnstableNonFreeFirmware
Unstable non-free-firmware repository
ExperimentalMain
Experimental main repository
ExperimentalContrib
Experimental contrib repository
ExperimentalNonFree
Experimental non-free repository
OldstableMain
Oldstable main repository
OldstableContrib
Oldstable contrib repository
OldstableNonFree
Oldstable non-free repository
Implementations§
Trait Implementations§
impl Copy for AptRepo
impl Eq for AptRepo
impl StructuralPartialEq for AptRepo
Auto Trait Implementations§
impl Freeze for AptRepo
impl RefUnwindSafe for AptRepo
impl Send for AptRepo
impl Sync for AptRepo
impl Unpin for AptRepo
impl UnsafeUnpin for AptRepo
impl UnwindSafe for AptRepo
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