pub struct RecurringCharge {
pub recurring_charge_amount: Option<f64>,
pub recurring_charge_frequency: Option<String>,
}
Expand description
Contains the specific price and frequency of a recurring charges for a reserved cache node, or for a reserved cache node offering.
Fields§
§recurring_charge_amount: Option<f64>
The monetary amount of the recurring charge.
recurring_charge_frequency: Option<String>
The frequency of the recurring charge.
Trait Implementations§
Source§impl Clone for RecurringCharge
impl Clone for RecurringCharge
Source§fn clone(&self) -> RecurringCharge
fn clone(&self) -> RecurringCharge
Returns a copy 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 RecurringCharge
impl Debug for RecurringCharge
Source§impl Default for RecurringCharge
impl Default for RecurringCharge
Source§fn default() -> RecurringCharge
fn default() -> RecurringCharge
Returns the “default value” for a type. Read more
Source§impl PartialEq for RecurringCharge
impl PartialEq for RecurringCharge
impl StructuralPartialEq for RecurringCharge
Auto Trait Implementations§
impl Freeze for RecurringCharge
impl RefUnwindSafe for RecurringCharge
impl Send for RecurringCharge
impl Sync for RecurringCharge
impl Unpin for RecurringCharge
impl UnwindSafe for RecurringCharge
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