pub enum HyperPricing {
Off = 0,
Auto = 1,
On = 2,
}Expand description
Enum representing the hyperpricing mode.
Variants§
Off = 0
Hyperpricing is turned off.
Auto = 1
Automatically choose hyperpricing.
On = 2
Hyperpricing is turned on.
Trait Implementations§
Source§impl Clone for HyperPricing
impl Clone for HyperPricing
Source§fn clone(&self) -> HyperPricing
fn clone(&self) -> HyperPricing
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 HyperPricing
impl Debug for HyperPricing
Source§impl From<HyperPricing> for i32
impl From<HyperPricing> for i32
Source§fn from(param: HyperPricing) -> i32
fn from(param: HyperPricing) -> i32
Converts to this type from the input type.
Source§impl PartialEq for HyperPricing
impl PartialEq for HyperPricing
impl Copy for HyperPricing
impl Eq for HyperPricing
impl StructuralPartialEq for HyperPricing
Auto Trait Implementations§
impl Freeze for HyperPricing
impl RefUnwindSafe for HyperPricing
impl Send for HyperPricing
impl Sync for HyperPricing
impl Unpin for HyperPricing
impl UnwindSafe for HyperPricing
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