pub enum VoidRepo {
X86_64,
X86_64Nonfree,
X86_64Musl,
X86_64MuslNonfree,
Aarch64,
Aarch64Nonfree,
Aarch64Musl,
Aarch64MuslNonfree,
}Expand description
Available Void Linux repositories.
Variants§
X86_64
x86_64 glibc main repository
X86_64Nonfree
x86_64 glibc nonfree repository
X86_64Musl
x86_64 musl main repository
X86_64MuslNonfree
x86_64 musl nonfree repository
Aarch64
aarch64 glibc main repository
Aarch64Nonfree
aarch64 glibc nonfree repository
Aarch64Musl
aarch64 musl main repository
Aarch64MuslNonfree
aarch64 musl nonfree repository
Implementations§
Trait Implementations§
impl Copy for VoidRepo
impl Eq for VoidRepo
impl StructuralPartialEq for VoidRepo
Auto Trait Implementations§
impl Freeze for VoidRepo
impl RefUnwindSafe for VoidRepo
impl Send for VoidRepo
impl Sync for VoidRepo
impl Unpin for VoidRepo
impl UnwindSafe for VoidRepo
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