Enum paypal_rust::resources::enums::landing_page::LandingPage    
source · [−]pub enum LandingPage {
    Login,
    Billing,
    NoPreference,
}Expand description
The type of landing page to show on the PayPal site for customer checkout.
Variants
Login
When the customer clicks PayPal Checkout, the customer is redirected to a page to log in to PayPal and approve the payment.
Billing
When the customer clicks PayPal Checkout, the customer is redirected to a page to enter credit or debit card and other relevant billing information required to complete the purchase.
NoPreference
When the customer clicks PayPal Checkout, the customer is redirected to either a page to log in to PayPal and approve the payment or to a page to enter credit or debit card and other relevant billing information required to complete the purchase, depending on their previous interaction with PayPal.
Implementations
sourceimpl LandingPage
 
impl LandingPage
Trait Implementations
sourceimpl AsRef<str> for LandingPage
 
impl AsRef<str> for LandingPage
sourceimpl Clone for LandingPage
 
impl Clone for LandingPage
sourcefn clone(&self) -> LandingPage
 
fn clone(&self) -> LandingPage
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresourceimpl Debug for LandingPage
 
impl Debug for LandingPage
sourceimpl<'de> Deserialize<'de> for LandingPage
 
impl<'de> Deserialize<'de> for LandingPage
sourcefn 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
sourceimpl Display for LandingPage
 
impl Display for LandingPage
sourceimpl PartialEq<LandingPage> for LandingPage
 
impl PartialEq<LandingPage> for LandingPage
sourcefn eq(&self, other: &LandingPage) -> bool
 
fn eq(&self, other: &LandingPage) -> bool
sourceimpl Serialize for LandingPage
 
impl Serialize for LandingPage
impl Copy for LandingPage
impl Eq for LandingPage
impl StructuralEq for LandingPage
impl StructuralPartialEq for LandingPage
Auto Trait Implementations
impl RefUnwindSafe for LandingPage
impl Send for LandingPage
impl Sync for LandingPage
impl Unpin for LandingPage
impl UnwindSafe for LandingPage
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized,
 
impl<Q, K> Equivalent<K> for Qwhere
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.