pub enum AutoReturn {
Approved,
All,
}
Expand description
Buyers will be redirected back to your site immediately after completing the purchase.
By default, AutoReturn
is not specified.
Possible values are:
-
approved: The redirection takes place only for approved payments.
-
all: The redirection takes place only for approved payments, forward compatibility only if we change the default behavior
Variants§
Approved
The redirection takes place only for approved payments.
All
The redirection takes place only for approved payments, forward compatibility only if we change the default behavior
Trait Implementations§
Source§impl AsRef<str> for AutoReturn
impl AsRef<str> for AutoReturn
Source§impl Clone for AutoReturn
impl Clone for AutoReturn
Source§fn clone(&self) -> AutoReturn
fn clone(&self) -> AutoReturn
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 Debug for AutoReturn
impl Debug for AutoReturn
Source§impl<'de> Deserialize<'de> for AutoReturn
impl<'de> Deserialize<'de> for AutoReturn
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 AutoReturn
impl PartialEq for AutoReturn
Source§impl Serialize for AutoReturn
impl Serialize for AutoReturn
impl Copy for AutoReturn
impl StructuralPartialEq for AutoReturn
Auto Trait Implementations§
impl Freeze for AutoReturn
impl RefUnwindSafe for AutoReturn
impl Send for AutoReturn
impl Sync for AutoReturn
impl Unpin for AutoReturn
impl UnwindSafe for AutoReturn
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