#[non_exhaustive]pub enum UpdateRedemptionStatusInformation {
Success(CustomRewardRedemption),
}
Available on crate feature
helix
only.Expand description
FIXME: Returns an object. Return Values for Update Redemption Status
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.
Success(CustomRewardRedemption)
200 - OK
Trait Implementations§
Source§impl Clone for UpdateRedemptionStatusInformation
impl Clone for UpdateRedemptionStatusInformation
Source§fn clone(&self) -> UpdateRedemptionStatusInformation
fn clone(&self) -> UpdateRedemptionStatusInformation
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<'de> Deserialize<'de> for UpdateRedemptionStatusInformation
impl<'de> Deserialize<'de> for UpdateRedemptionStatusInformation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UpdateRedemptionStatusInformation
impl PartialEq for UpdateRedemptionStatusInformation
Source§fn eq(&self, other: &UpdateRedemptionStatusInformation) -> bool
fn eq(&self, other: &UpdateRedemptionStatusInformation) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for UpdateRedemptionStatusInformation
impl StructuralPartialEq for UpdateRedemptionStatusInformation
Auto Trait Implementations§
impl Freeze for UpdateRedemptionStatusInformation
impl RefUnwindSafe for UpdateRedemptionStatusInformation
impl Send for UpdateRedemptionStatusInformation
impl Sync for UpdateRedemptionStatusInformation
impl Unpin for UpdateRedemptionStatusInformation
impl UnwindSafe for UpdateRedemptionStatusInformation
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