Struct sparkpost::Options[][src]

pub struct Options {
    pub open_tracking: bool,
    pub click_tracking: bool,
    pub transactional: bool,
    pub sandbox: bool,
    pub inline_css: bool,
}

Message options for a particular Message

use sparkpost::Options;
let options = Options {
           open_tracking: false,
           click_tracking: false,
           transactional: false,
           sandbox: false,
           inline_css: false,
       };
// or
let options2 = Options::default();

assert_eq!(options, options2);

Fields

Trait Implementations

impl Debug for Options
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Options
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Default for Options
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl Send for Options

impl Sync for Options