pub struct CostRates {
pub per_page: i64,
pub total_pages: i64,
pub previous_page: Option<i64>,
pub total_entries: i64,
pub links: PaginationLinks,
pub page: i64,
pub next_page: Option<i64>,
pub cost_rates: Vec<CostRate>,
}Fields§
§per_page: i64§total_pages: i64§previous_page: Option<i64>§total_entries: i64§links: PaginationLinks§page: i64§next_page: Option<i64>§cost_rates: Vec<CostRate>Trait Implementations§
Source§impl<'de> Deserialize<'de> for CostRates
impl<'de> Deserialize<'de> for CostRates
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
Auto Trait Implementations§
impl Freeze for CostRates
impl RefUnwindSafe for CostRates
impl Send for CostRates
impl Sync for CostRates
impl Unpin for CostRates
impl UnwindSafe for CostRates
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