[][src]Struct mailchimp::types::ListSignupFormHeader

pub struct ListSignupFormHeader {
    pub image_url: String,
    pub text: String,
    pub image_width: String,
    pub image_height: String,
    pub image_alt: String,
    pub image_link: String,
    pub image_align: String,
    pub image_border_width: String,
    pub image_border_style: String,
    pub image_border_color: String,
    pub image_target: String,
}

Signup form header options

Fields

image_url: String

Header image URL.

text: String

Header text.

image_width: String

Image width, in pixels.

image_height: String

Image height, in pixels.

image_alt: String

Alt text for the image.

image_link: String

The URL that the header image will link to.

image_align: String

Image alignment. PV: none left center right

image_border_width: String

Image border width.

image_border_style: String

Image border style. Possible Values: none - solid - dotted - dashed - double - groove - outset - inset - ridge

image_border_color: String

Image border color.

image_target: String

Image link target. Possible Values: _blank - null

Trait Implementations

impl Clone for ListSignupFormHeader[src]

impl Debug for ListSignupFormHeader[src]

impl Default for ListSignupFormHeader[src]

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

impl Serialize for ListSignupFormHeader[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: Deserialize<'de>, 
[src]

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

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

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.