pub enum QuotesResourceRecurringInterval {
Day,
Month,
Week,
Year,
}
Expand description
The frequency at which a subscription is billed. One of day
, week
, month
or year
.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for QuotesResourceRecurringInterval
impl Clone for QuotesResourceRecurringInterval
Source§fn clone(&self) -> QuotesResourceRecurringInterval
fn clone(&self) -> QuotesResourceRecurringInterval
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 FromValueOpt for QuotesResourceRecurringInterval
impl FromValueOpt for QuotesResourceRecurringInterval
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for QuotesResourceRecurringInterval
impl PartialEq for QuotesResourceRecurringInterval
Source§fn eq(&self, other: &QuotesResourceRecurringInterval) -> bool
fn eq(&self, other: &QuotesResourceRecurringInterval) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for QuotesResourceRecurringInterval
impl Eq for QuotesResourceRecurringInterval
impl StructuralPartialEq for QuotesResourceRecurringInterval
Auto Trait Implementations§
impl Freeze for QuotesResourceRecurringInterval
impl RefUnwindSafe for QuotesResourceRecurringInterval
impl Send for QuotesResourceRecurringInterval
impl Sync for QuotesResourceRecurringInterval
impl Unpin for QuotesResourceRecurringInterval
impl UnwindSafe for QuotesResourceRecurringInterval
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