pub enum UpdateSubscriptionPauseCollectionBehavior {
KeepAsDraft,
MarkUncollectible,
Void,
}
Expand description
The payment collection behavior for this subscription while paused.
One of keep_as_draft
, mark_uncollectible
, or void
.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for UpdateSubscriptionPauseCollectionBehavior
impl Clone for UpdateSubscriptionPauseCollectionBehavior
Source§fn clone(&self) -> UpdateSubscriptionPauseCollectionBehavior
fn clone(&self) -> UpdateSubscriptionPauseCollectionBehavior
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 UpdateSubscriptionPauseCollectionBehavior
impl PartialEq for UpdateSubscriptionPauseCollectionBehavior
Source§fn eq(&self, other: &UpdateSubscriptionPauseCollectionBehavior) -> bool
fn eq(&self, other: &UpdateSubscriptionPauseCollectionBehavior) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for UpdateSubscriptionPauseCollectionBehavior
impl Eq for UpdateSubscriptionPauseCollectionBehavior
impl StructuralPartialEq for UpdateSubscriptionPauseCollectionBehavior
Auto Trait Implementations§
impl Freeze for UpdateSubscriptionPauseCollectionBehavior
impl RefUnwindSafe for UpdateSubscriptionPauseCollectionBehavior
impl Send for UpdateSubscriptionPauseCollectionBehavior
impl Sync for UpdateSubscriptionPauseCollectionBehavior
impl Unpin for UpdateSubscriptionPauseCollectionBehavior
impl UnwindSafe for UpdateSubscriptionPauseCollectionBehavior
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