pub enum CreateAccountLinkCollectionOptionsFields {
CurrentlyDue,
EventuallyDue,
}
Expand description
Specifies whether the platform collects only currently_due requirements (currently_due
) or both currently_due and eventually_due requirements (eventually_due
).
If you don’t specify collection_options
, the default value is currently_due
.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for CreateAccountLinkCollectionOptionsFields
impl Clone for CreateAccountLinkCollectionOptionsFields
Source§fn clone(&self) -> CreateAccountLinkCollectionOptionsFields
fn clone(&self) -> CreateAccountLinkCollectionOptionsFields
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 CreateAccountLinkCollectionOptionsFields
impl PartialEq for CreateAccountLinkCollectionOptionsFields
Source§fn eq(&self, other: &CreateAccountLinkCollectionOptionsFields) -> bool
fn eq(&self, other: &CreateAccountLinkCollectionOptionsFields) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for CreateAccountLinkCollectionOptionsFields
impl Eq for CreateAccountLinkCollectionOptionsFields
impl StructuralPartialEq for CreateAccountLinkCollectionOptionsFields
Auto Trait Implementations§
impl Freeze for CreateAccountLinkCollectionOptionsFields
impl RefUnwindSafe for CreateAccountLinkCollectionOptionsFields
impl Send for CreateAccountLinkCollectionOptionsFields
impl Sync for CreateAccountLinkCollectionOptionsFields
impl Unpin for CreateAccountLinkCollectionOptionsFields
impl UnwindSafe for CreateAccountLinkCollectionOptionsFields
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