Skip to main content

OpenSuseRepo

Enum OpenSuseRepo 

Source
pub enum OpenSuseRepo {
Show 36 variants TumbleweedOss, TumbleweedNonOss, TumbleweedUpdate, Leap160Oss, Leap160NonOss, Leap156Oss, Leap156NonOss, Leap156UpdateOss, Leap156UpdateNonOss, Leap156Backports, Leap156Sle, TumbleweedSrcOss, TumbleweedSrcNonOss, Leap156SrcOss, Leap156SrcNonOss, TumbleweedDebug, Leap160Debug, Leap156Debug, Leap156DebugUpdate, FactoryOss, GamesTumbleweed, GamesLeap156, KdeExtraTumbleweed, KdeFrameworksTumbleweed, KdeQt6Tumbleweed, GnomeAppsLeap160, GnomeAppsLeap156, GnomeFactory, XfceTumbleweed, XfceLeap160, XfceLeap156, MozillaTumbleweed, ScienceTumbleweed, WineTumbleweed, ServerHttpTumbleweed, ServerDatabaseTumbleweed,
}
Expand description

Available openSUSE repositories.

Variants§

§

TumbleweedOss

Tumbleweed OSS (rolling release, open source)

§

TumbleweedNonOss

Tumbleweed Non-OSS (rolling release, proprietary)

§

TumbleweedUpdate

Tumbleweed Updates

§

Leap160Oss

Leap 16.0 OSS

§

Leap160NonOss

Leap 16.0 Non-OSS

§

Leap156Oss

Leap 15.6 OSS

§

Leap156NonOss

Leap 15.6 Non-OSS

§

Leap156UpdateOss

Leap 15.6 Updates OSS

§

Leap156UpdateNonOss

Leap 15.6 Updates Non-OSS

§

Leap156Backports

Leap 15.6 Backports

§

Leap156Sle

Leap 15.6 SLE Updates

§

TumbleweedSrcOss

Tumbleweed Source OSS

§

TumbleweedSrcNonOss

Tumbleweed Source Non-OSS

§

Leap156SrcOss

Leap 15.6 Source OSS

§

Leap156SrcNonOss

Leap 15.6 Source Non-OSS

§

TumbleweedDebug

Tumbleweed Debug

§

Leap160Debug

Leap 16.0 Debug

§

Leap156Debug

Leap 15.6 Debug

§

Leap156DebugUpdate

Leap 15.6 Debug Updates

§

FactoryOss

Factory OSS (development, becomes Tumbleweed)

§

GamesTumbleweed

Games for Tumbleweed

§

GamesLeap156

Games for Leap 15.6

§

KdeExtraTumbleweed

KDE Extra for Tumbleweed

§

KdeFrameworksTumbleweed

KDE Frameworks for Tumbleweed

§

KdeQt6Tumbleweed

KDE Qt6 for Tumbleweed

§

GnomeAppsLeap160

GNOME Apps for Leap 16.0

§

GnomeAppsLeap156

GNOME Apps for Leap 15.6

§

GnomeFactory

GNOME Factory

§

XfceTumbleweed

Xfce for Tumbleweed

§

XfceLeap160

Xfce for Leap 16.0

§

XfceLeap156

Xfce for Leap 15.6

§

MozillaTumbleweed

Mozilla (Firefox, Thunderbird) for Tumbleweed

§

ScienceTumbleweed

Science packages for Tumbleweed

§

WineTumbleweed

Wine for Tumbleweed

§

ServerHttpTumbleweed

HTTP servers for Tumbleweed

§

ServerDatabaseTumbleweed

Database servers for Tumbleweed

Implementations§

Source§

impl OpenSuseRepo

Source

pub fn all() -> &'static [OpenSuseRepo]

All available repos (official + community).

Source

pub fn official() -> &'static [OpenSuseRepo]

Official repos only (no community).

Source

pub fn binary_only() -> &'static [OpenSuseRepo]

Binary repos only (no source or debug).

Source

pub fn tumbleweed() -> &'static [OpenSuseRepo]

Just Tumbleweed repos.

Source

pub fn leap_15_6() -> &'static [OpenSuseRepo]

Just Leap 15.6 repos.

Source

pub fn leap_16_0() -> &'static [OpenSuseRepo]

Just Leap 16.0 repos.

Trait Implementations§

Source§

impl Clone for OpenSuseRepo

Source§

fn clone(&self) -> OpenSuseRepo

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for OpenSuseRepo

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Hash for OpenSuseRepo

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for OpenSuseRepo

Source§

fn eq(&self, other: &OpenSuseRepo) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for OpenSuseRepo

Source§

impl Eq for OpenSuseRepo

Source§

impl StructuralPartialEq for OpenSuseRepo

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.