pub struct BillingBandwidth {
pub total: Option<f32>,
pub tiers: Option<Vec<BillingBandwidthTiers>>,
}
Fields§
§total: Option<f32>
§tiers: Option<Vec<BillingBandwidthTiers>>
Implementations§
Source§impl BillingBandwidth
impl BillingBandwidth
pub fn new() -> BillingBandwidth
Trait Implementations§
Source§impl Clone for BillingBandwidth
impl Clone for BillingBandwidth
Source§fn clone(&self) -> BillingBandwidth
fn clone(&self) -> BillingBandwidth
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 BillingBandwidth
impl Debug for BillingBandwidth
Source§impl Default for BillingBandwidth
impl Default for BillingBandwidth
Source§fn default() -> BillingBandwidth
fn default() -> BillingBandwidth
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BillingBandwidth
impl<'de> Deserialize<'de> for BillingBandwidth
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 PartialEq for BillingBandwidth
impl PartialEq for BillingBandwidth
Source§impl Serialize for BillingBandwidth
impl Serialize for BillingBandwidth
impl StructuralPartialEq for BillingBandwidth
Auto Trait Implementations§
impl Freeze for BillingBandwidth
impl RefUnwindSafe for BillingBandwidth
impl Send for BillingBandwidth
impl Sync for BillingBandwidth
impl Unpin for BillingBandwidth
impl UnwindSafe for BillingBandwidth
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