pub struct StepInput {
pub body: Option<String>,
pub delay_seconds: Option<i32>,
pub id: Option<String>,
pub subject: Option<String>,
}Fields§
§body: Option<String>Body is the message text. Required.
delay_seconds: Option<i32>DelaySeconds is how long after the previous step this one sends (after enrollment, for the first step). Must be >= 0.
id: Option<String>SequenceID is the sequence id from the path (the route’s :id).
subject: Option<String>Subject is the email subject line, capped at 1024 bytes.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for StepInput
impl<'de> Deserialize<'de> for StepInput
Source§fn 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
impl StructuralPartialEq for StepInput
Auto Trait Implementations§
impl Freeze for StepInput
impl RefUnwindSafe for StepInput
impl Send for StepInput
impl Sync for StepInput
impl Unpin for StepInput
impl UnsafeUnpin for StepInput
impl UnwindSafe for StepInput
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