pub enum InvoiceType {
Subscription,
AddOn,
Credit,
OneOff,
ProgressiveBilling,
}Variants§
Trait Implementations§
Source§impl Clone for InvoiceType
impl Clone for InvoiceType
Source§fn clone(&self) -> InvoiceType
fn clone(&self) -> InvoiceType
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 Debug for InvoiceType
impl Debug for InvoiceType
Source§impl<'de> Deserialize<'de> for InvoiceType
impl<'de> Deserialize<'de> for InvoiceType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl FromStr for InvoiceType
impl FromStr for InvoiceType
Source§impl Serialize for InvoiceType
impl Serialize for InvoiceType
Auto Trait Implementations§
impl Freeze for InvoiceType
impl RefUnwindSafe for InvoiceType
impl Send for InvoiceType
impl Sync for InvoiceType
impl Unpin for InvoiceType
impl UnwindSafe for InvoiceType
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