pub enum DidBillingType {
PerMinute,
Flat,
Unknown(String),
}Expand description
DID billing model.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for DidBillingType
impl Clone for DidBillingType
Source§fn clone(&self) -> DidBillingType
fn clone(&self) -> DidBillingType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DidBillingType
impl Debug for DidBillingType
Source§impl<'de> Deserialize<'de> for DidBillingType
impl<'de> Deserialize<'de> for DidBillingType
Source§fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for DidBillingType
impl Display for DidBillingType
impl Eq for DidBillingType
Source§impl Hash for DidBillingType
impl Hash for DidBillingType
Source§impl PartialEq for DidBillingType
impl PartialEq for DidBillingType
Source§fn eq(&self, other: &DidBillingType) -> bool
fn eq(&self, other: &DidBillingType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DidBillingType
impl Serialize for DidBillingType
impl StructuralPartialEq for DidBillingType
Auto Trait Implementations§
impl Freeze for DidBillingType
impl RefUnwindSafe for DidBillingType
impl Send for DidBillingType
impl Sync for DidBillingType
impl Unpin for DidBillingType
impl UnsafeUnpin for DidBillingType
impl UnwindSafe for DidBillingType
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