#[non_exhaustive]pub enum FixedPriceOrderReason {
PlatformAccountMigration,
Other(String),
}Expand description
The reason that the Fixed Price Order was created
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.
PlatformAccountMigration
PLATFORM_ACCOUNT_MIGRATION.
Other(String)
A value not (yet) known to this version of the SDK.
Implementations§
Trait Implementations§
Source§impl Clone for FixedPriceOrderReason
impl Clone for FixedPriceOrderReason
Source§fn clone(&self) -> FixedPriceOrderReason
fn clone(&self) -> FixedPriceOrderReason
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FixedPriceOrderReason
impl Debug for FixedPriceOrderReason
Source§impl<'de> Deserialize<'de> for FixedPriceOrderReason
impl<'de> Deserialize<'de> for FixedPriceOrderReason
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for FixedPriceOrderReason
impl Display for FixedPriceOrderReason
impl Eq for FixedPriceOrderReason
Source§impl From<&str> for FixedPriceOrderReason
impl From<&str> for FixedPriceOrderReason
Source§impl From<String> for FixedPriceOrderReason
impl From<String> for FixedPriceOrderReason
Source§impl FromStr for FixedPriceOrderReason
impl FromStr for FixedPriceOrderReason
Source§impl Hash for FixedPriceOrderReason
impl Hash for FixedPriceOrderReason
Source§impl PartialEq for FixedPriceOrderReason
impl PartialEq for FixedPriceOrderReason
Source§impl Serialize for FixedPriceOrderReason
impl Serialize for FixedPriceOrderReason
impl StructuralPartialEq for FixedPriceOrderReason
Auto Trait Implementations§
impl Freeze for FixedPriceOrderReason
impl RefUnwindSafe for FixedPriceOrderReason
impl Send for FixedPriceOrderReason
impl Sync for FixedPriceOrderReason
impl Unpin for FixedPriceOrderReason
impl UnsafeUnpin for FixedPriceOrderReason
impl UnwindSafe for FixedPriceOrderReason
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.