[][src]Struct stripe::BrandingSettings

pub struct BrandingSettings {
    pub icon: Option<Expandable<File>>,
    pub logo: Option<Expandable<File>>,
    pub primary_color: Option<String>,
}

Fields

icon: Option<Expandable<File>>

(ID of a file upload) An icon for the account.

Must be square and at least 128px x 128px.

(ID of a file upload) A logo for the account that will be used in Checkout instead of the icon and without the account's name next to it if provided.

Must be at least 128px x 128px.

primary_color: Option<String>

A CSS hex color value representing the primary branding color for this account.

Trait Implementations

impl Clone for BrandingSettings[src]

impl Debug for BrandingSettings[src]

impl<'de> Deserialize<'de> for BrandingSettings[src]

impl Serialize for BrandingSettings[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.