#[non_exhaustive]pub enum TransactionRemoteReason {
GenericRepo,
RuntimeDeps,
}
Expand description
The reason for add-new-remote
.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
GenericRepo
The remote specified in the flatpakref has other apps too
RuntimeDeps
The remote has runtimes needed for the app
Trait Implementations§
source§impl Clone for TransactionRemoteReason
impl Clone for TransactionRemoteReason
source§fn clone(&self) -> TransactionRemoteReason
fn clone(&self) -> TransactionRemoteReason
Returns a copy 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 TransactionRemoteReason
impl Debug for TransactionRemoteReason
source§impl From<TransactionRemoteReason> for Value
impl From<TransactionRemoteReason> for Value
source§fn from(v: TransactionRemoteReason) -> Self
fn from(v: TransactionRemoteReason) -> Self
Converts to this type from the input type.
source§impl<'a> FromValue<'a> for TransactionRemoteReason
impl<'a> FromValue<'a> for TransactionRemoteReason
§type Checker = GenericValueTypeChecker<TransactionRemoteReason>
type Checker = GenericValueTypeChecker<TransactionRemoteReason>
Value type checker.
source§unsafe fn from_value(value: &'a Value) -> Self
unsafe fn from_value(value: &'a Value) -> Self
Get the contained value from a
Value
. Read moresource§impl HasParamSpec for TransactionRemoteReason
impl HasParamSpec for TransactionRemoteReason
type ParamSpec = ParamSpecEnum
§type SetValue = TransactionRemoteReason
type SetValue = TransactionRemoteReason
Preferred value to be used as setter for the associated ParamSpec.
type BuilderFn = fn(_: &str, _: TransactionRemoteReason) -> ParamSpecEnumBuilder<'_, TransactionRemoteReason>
fn param_spec_builder() -> Self::BuilderFn
source§impl Hash for TransactionRemoteReason
impl Hash for TransactionRemoteReason
source§impl Ord for TransactionRemoteReason
impl Ord for TransactionRemoteReason
source§fn cmp(&self, other: &TransactionRemoteReason) -> Ordering
fn cmp(&self, other: &TransactionRemoteReason) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for TransactionRemoteReason
impl PartialEq for TransactionRemoteReason
source§impl PartialOrd for TransactionRemoteReason
impl PartialOrd for TransactionRemoteReason
source§impl StaticType for TransactionRemoteReason
impl StaticType for TransactionRemoteReason
source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.source§impl ToValue for TransactionRemoteReason
impl ToValue for TransactionRemoteReason
source§impl ValueType for TransactionRemoteReason
impl ValueType for TransactionRemoteReason
§type Type = TransactionRemoteReason
type Type = TransactionRemoteReason
Type to get the
Type
from. Read moreimpl Copy for TransactionRemoteReason
impl Eq for TransactionRemoteReason
impl StructuralPartialEq for TransactionRemoteReason
Auto Trait Implementations§
impl Freeze for TransactionRemoteReason
impl RefUnwindSafe for TransactionRemoteReason
impl Send for TransactionRemoteReason
impl Sync for TransactionRemoteReason
impl Unpin for TransactionRemoteReason
impl UnwindSafe for TransactionRemoteReason
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoClosureReturnValue for T
impl<T> IntoClosureReturnValue for T
fn into_closure_return_value(self) -> Option<Value>
source§impl<T> PropertyGet for Twhere
T: HasParamSpec,
impl<T> PropertyGet for Twhere
T: HasParamSpec,
source§impl<T> StaticTypeExt for Twhere
T: StaticType,
impl<T> StaticTypeExt for Twhere
T: StaticType,
source§fn ensure_type()
fn ensure_type()
Ensures that the type has been registered with the type system.
source§impl<T> ToSendValue for T
impl<T> ToSendValue for T
source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
Returns a
SendValue
clone of self
.