pub struct VultrBillingDTO {
pub id: Option<f32>,
pub date: Option<String>,
pub _type: Option<String>,
pub description: Option<String>,
pub amount: Option<f32>,
pub balance: Option<f32>,
}
Fields§
§id: Option<f32>
ID of the billing history item
date: Option<String>
Date billing history item was generated
_type: Option<String>
Type of billing history item
description: Option<String>
Description of billing history item
amount: Option<f32>
Amount for the billing history item in dollars
balance: Option<f32>
The accounts balance in dollars
Trait Implementations§
Source§impl Clone for VultrBillingDTO
impl Clone for VultrBillingDTO
Source§fn clone(&self) -> VultrBillingDTO
fn clone(&self) -> VultrBillingDTO
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 VultrBillingDTO
impl Debug for VultrBillingDTO
Source§impl Default for VultrBillingDTO
impl Default for VultrBillingDTO
Source§fn default() -> VultrBillingDTO
fn default() -> VultrBillingDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VultrBillingDTO
impl<'de> Deserialize<'de> for VultrBillingDTO
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 VultrBillingDTO
impl PartialEq for VultrBillingDTO
Source§impl Serialize for VultrBillingDTO
impl Serialize for VultrBillingDTO
impl StructuralPartialEq for VultrBillingDTO
Auto Trait Implementations§
impl Freeze for VultrBillingDTO
impl RefUnwindSafe for VultrBillingDTO
impl Send for VultrBillingDTO
impl Sync for VultrBillingDTO
impl Unpin for VultrBillingDTO
impl UnwindSafe for VultrBillingDTO
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