pub enum BillingMode {
PayPerRequest,
Provisioned,
}Variants§
Trait Implementations§
Source§impl Clone for BillingMode
impl Clone for BillingMode
Source§fn clone(&self) -> BillingMode
fn clone(&self) -> BillingMode
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 BillingMode
impl Debug for BillingMode
Source§impl From<BillingMode> for String
impl From<BillingMode> for String
Source§fn from(value: BillingMode) -> Self
fn from(value: BillingMode) -> Self
Converts to this type from the input type.
Source§impl PartialEq for BillingMode
impl PartialEq for BillingMode
impl StructuralPartialEq for BillingMode
Auto Trait Implementations§
impl Freeze for BillingMode
impl RefUnwindSafe for BillingMode
impl Send for BillingMode
impl Sync for BillingMode
impl Unpin for BillingMode
impl UnsafeUnpin for BillingMode
impl UnwindSafe for BillingMode
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