#[repr(u32)]pub enum EMarketNotAllowedReasonFlags {
Show 17 variants
k_EMarketNotAllowedReason_None = 0,
k_EMarketNotAllowedReason_TemporaryFailure = 1,
k_EMarketNotAllowedReason_AccountDisabled = 2,
k_EMarketNotAllowedReason_AccountLockedDown = 4,
k_EMarketNotAllowedReason_AccountLimited = 8,
k_EMarketNotAllowedReason_TradeBanned = 16,
k_EMarketNotAllowedReason_AccountNotTrusted = 32,
k_EMarketNotAllowedReason_SteamGuardNotEnabled = 64,
k_EMarketNotAllowedReason_SteamGuardOnlyRecentlyEnabled = 128,
k_EMarketNotAllowedReason_RecentPasswordReset = 256,
k_EMarketNotAllowedReason_NewPaymentMethod = 512,
k_EMarketNotAllowedReason_InvalidCookie = 1_024,
k_EMarketNotAllowedReason_UsingNewDevice = 2_048,
k_EMarketNotAllowedReason_RecentSelfRefund = 4_096,
k_EMarketNotAllowedReason_NewPaymentMethodCannotBeVerified = 8_192,
k_EMarketNotAllowedReason_NoRecentPurchases = 16_384,
k_EMarketNotAllowedReason_AcceptedWalletGift = 32_768,
}
Variants§
k_EMarketNotAllowedReason_None = 0
k_EMarketNotAllowedReason_TemporaryFailure = 1
k_EMarketNotAllowedReason_AccountDisabled = 2
k_EMarketNotAllowedReason_AccountLockedDown = 4
k_EMarketNotAllowedReason_AccountLimited = 8
k_EMarketNotAllowedReason_TradeBanned = 16
k_EMarketNotAllowedReason_AccountNotTrusted = 32
k_EMarketNotAllowedReason_SteamGuardNotEnabled = 64
k_EMarketNotAllowedReason_SteamGuardOnlyRecentlyEnabled = 128
k_EMarketNotAllowedReason_RecentPasswordReset = 256
k_EMarketNotAllowedReason_NewPaymentMethod = 512
k_EMarketNotAllowedReason_InvalidCookie = 1_024
k_EMarketNotAllowedReason_UsingNewDevice = 2_048
k_EMarketNotAllowedReason_RecentSelfRefund = 4_096
k_EMarketNotAllowedReason_NewPaymentMethodCannotBeVerified = 8_192
k_EMarketNotAllowedReason_NoRecentPurchases = 16_384
k_EMarketNotAllowedReason_AcceptedWalletGift = 32_768
Trait Implementations§
Source§impl Clone for EMarketNotAllowedReasonFlags
impl Clone for EMarketNotAllowedReasonFlags
Source§fn clone(&self) -> EMarketNotAllowedReasonFlags
fn clone(&self) -> EMarketNotAllowedReasonFlags
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 EMarketNotAllowedReasonFlags
impl Debug for EMarketNotAllowedReasonFlags
Source§impl Hash for EMarketNotAllowedReasonFlags
impl Hash for EMarketNotAllowedReasonFlags
Source§impl Ord for EMarketNotAllowedReasonFlags
impl Ord for EMarketNotAllowedReasonFlags
Source§fn cmp(&self, other: &EMarketNotAllowedReasonFlags) -> Ordering
fn cmp(&self, other: &EMarketNotAllowedReasonFlags) -> 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 EMarketNotAllowedReasonFlags
impl PartialEq for EMarketNotAllowedReasonFlags
Source§fn eq(&self, other: &EMarketNotAllowedReasonFlags) -> bool
fn eq(&self, other: &EMarketNotAllowedReasonFlags) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for EMarketNotAllowedReasonFlags
impl PartialOrd for EMarketNotAllowedReasonFlags
impl Copy for EMarketNotAllowedReasonFlags
impl Eq for EMarketNotAllowedReasonFlags
impl StructuralPartialEq for EMarketNotAllowedReasonFlags
Auto Trait Implementations§
impl Freeze for EMarketNotAllowedReasonFlags
impl RefUnwindSafe for EMarketNotAllowedReasonFlags
impl Send for EMarketNotAllowedReasonFlags
impl Sync for EMarketNotAllowedReasonFlags
impl Unpin for EMarketNotAllowedReasonFlags
impl UnwindSafe for EMarketNotAllowedReasonFlags
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