pub struct CreateSourceRedirect {
pub return_url: String,
}Expand description
Parameters required for the redirect flow.
Required if the source is authenticated by a redirect (flow is redirect).
Fields§
§return_url: StringThe URL you provide to redirect the customer back to you after they authenticated their payment. It can use your application URI scheme in the context of a mobile application.
Implementations§
Trait Implementations§
Source§impl Clone for CreateSourceRedirect
impl Clone for CreateSourceRedirect
Source§fn clone(&self) -> CreateSourceRedirect
fn clone(&self) -> CreateSourceRedirect
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 CreateSourceRedirect
impl Debug for CreateSourceRedirect
Source§impl PartialEq for CreateSourceRedirect
impl PartialEq for CreateSourceRedirect
Source§impl Serialize for CreateSourceRedirect
impl Serialize for CreateSourceRedirect
impl Eq for CreateSourceRedirect
impl StructuralPartialEq for CreateSourceRedirect
Auto Trait Implementations§
impl Freeze for CreateSourceRedirect
impl RefUnwindSafe for CreateSourceRedirect
impl Send for CreateSourceRedirect
impl Sync for CreateSourceRedirect
impl Unpin for CreateSourceRedirect
impl UnsafeUnpin for CreateSourceRedirect
impl UnwindSafe for CreateSourceRedirect
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