pub enum CreateSubscriptionScheduleStartDate {
Now,
Timestamp(Timestamp),
}
Expand description
When the subscription schedule starts.
We recommend using now
so that it starts the subscription immediately.
You can also use a Unix timestamp to backdate the subscription so that it starts on a past date, or set a future date for the subscription to start on.
Variants§
Trait Implementations§
Source§impl Clone for CreateSubscriptionScheduleStartDate
impl Clone for CreateSubscriptionScheduleStartDate
Source§fn clone(&self) -> CreateSubscriptionScheduleStartDate
fn clone(&self) -> CreateSubscriptionScheduleStartDate
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for CreateSubscriptionScheduleStartDate
Auto Trait Implementations§
impl Freeze for CreateSubscriptionScheduleStartDate
impl RefUnwindSafe for CreateSubscriptionScheduleStartDate
impl Send for CreateSubscriptionScheduleStartDate
impl Sync for CreateSubscriptionScheduleStartDate
impl Unpin for CreateSubscriptionScheduleStartDate
impl UnwindSafe for CreateSubscriptionScheduleStartDate
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