pub enum CreatePreviewInvoiceScheduleDetailsEndBehavior {
Cancel,
Release,
}
Expand description
Behavior of the subscription schedule and underlying subscription when it ends.
Possible values are release
or cancel
with the default being release
.
release
will end the subscription schedule and keep the underlying subscription running.
cancel
will end the subscription schedule and cancel the underlying subscription.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for CreatePreviewInvoiceScheduleDetailsEndBehavior
impl Clone for CreatePreviewInvoiceScheduleDetailsEndBehavior
Source§fn clone(&self) -> CreatePreviewInvoiceScheduleDetailsEndBehavior
fn clone(&self) -> CreatePreviewInvoiceScheduleDetailsEndBehavior
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 moreSource§impl PartialEq for CreatePreviewInvoiceScheduleDetailsEndBehavior
impl PartialEq for CreatePreviewInvoiceScheduleDetailsEndBehavior
Source§fn eq(&self, other: &CreatePreviewInvoiceScheduleDetailsEndBehavior) -> bool
fn eq(&self, other: &CreatePreviewInvoiceScheduleDetailsEndBehavior) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for CreatePreviewInvoiceScheduleDetailsEndBehavior
impl Eq for CreatePreviewInvoiceScheduleDetailsEndBehavior
impl StructuralPartialEq for CreatePreviewInvoiceScheduleDetailsEndBehavior
Auto Trait Implementations§
impl Freeze for CreatePreviewInvoiceScheduleDetailsEndBehavior
impl RefUnwindSafe for CreatePreviewInvoiceScheduleDetailsEndBehavior
impl Send for CreatePreviewInvoiceScheduleDetailsEndBehavior
impl Sync for CreatePreviewInvoiceScheduleDetailsEndBehavior
impl Unpin for CreatePreviewInvoiceScheduleDetailsEndBehavior
impl UnwindSafe for CreatePreviewInvoiceScheduleDetailsEndBehavior
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