pub struct SetupIntentNextActionRedirectToUrl {
pub return_url: Option<String>,
pub url: Option<String>,
}Fields§
§return_url: Option<String>If the customer does not exit their browser while authenticating, they will be redirected to this specified URL after completion.
url: Option<String>The URL you must redirect your customer to in order to authenticate.
Trait Implementations§
Source§impl Clone for SetupIntentNextActionRedirectToUrl
impl Clone for SetupIntentNextActionRedirectToUrl
Source§fn clone(&self) -> SetupIntentNextActionRedirectToUrl
fn clone(&self) -> SetupIntentNextActionRedirectToUrl
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 FromValueOpt for SetupIntentNextActionRedirectToUrl
impl FromValueOpt for SetupIntentNextActionRedirectToUrl
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for SetupIntentNextActionRedirectToUrl
impl PartialEq for SetupIntentNextActionRedirectToUrl
Source§fn eq(&self, other: &SetupIntentNextActionRedirectToUrl) -> bool
fn eq(&self, other: &SetupIntentNextActionRedirectToUrl) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SetupIntentNextActionRedirectToUrl
impl StructuralPartialEq for SetupIntentNextActionRedirectToUrl
Auto Trait Implementations§
impl Freeze for SetupIntentNextActionRedirectToUrl
impl RefUnwindSafe for SetupIntentNextActionRedirectToUrl
impl Send for SetupIntentNextActionRedirectToUrl
impl Sync for SetupIntentNextActionRedirectToUrl
impl Unpin for SetupIntentNextActionRedirectToUrl
impl UnsafeUnpin for SetupIntentNextActionRedirectToUrl
impl UnwindSafe for SetupIntentNextActionRedirectToUrl
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