pub enum FDroidRepo {
Main,
Archive,
IzzyOnDroid,
Guardian,
}Expand description
Available F-Droid repositories.
Variants§
Main
Main F-Droid repository
Archive
F-Droid Archive - older app versions
IzzyOnDroid
IzzyOnDroid - third-party repo with additional apps
Guardian
Guardian Project - privacy/security focused apps
Implementations§
Source§impl FDroidRepo
impl FDroidRepo
Sourcepub fn all() -> &'static [FDroidRepo]
pub fn all() -> &'static [FDroidRepo]
All available repositories.
Sourcepub fn main() -> &'static [FDroidRepo]
pub fn main() -> &'static [FDroidRepo]
Main F-Droid repo only.
Sourcepub fn official() -> &'static [FDroidRepo]
pub fn official() -> &'static [FDroidRepo]
Main + Archive repos.
Sourcepub fn privacy() -> &'static [FDroidRepo]
pub fn privacy() -> &'static [FDroidRepo]
Privacy-focused repos (Main + Guardian).
Sourcepub fn extended() -> &'static [FDroidRepo]
pub fn extended() -> &'static [FDroidRepo]
Extended repos (Main + IzzyOnDroid).
Trait Implementations§
Source§impl Clone for FDroidRepo
impl Clone for FDroidRepo
Source§fn clone(&self) -> FDroidRepo
fn clone(&self) -> FDroidRepo
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 FDroidRepo
impl Debug for FDroidRepo
Source§impl Hash for FDroidRepo
impl Hash for FDroidRepo
Source§impl PartialEq for FDroidRepo
impl PartialEq for FDroidRepo
impl Copy for FDroidRepo
impl Eq for FDroidRepo
impl StructuralPartialEq for FDroidRepo
Auto Trait Implementations§
impl Freeze for FDroidRepo
impl RefUnwindSafe for FDroidRepo
impl Send for FDroidRepo
impl Sync for FDroidRepo
impl Unpin for FDroidRepo
impl UnwindSafe for FDroidRepo
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