pub struct PricingResponse {
pub count_countries: u32,
pub count_networks: u32,
pub countries: Vec<CountryPricing>,
}
Fields§
§count_countries: u32
§count_networks: u32
§countries: Vec<CountryPricing>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PricingResponse
impl<'de> Deserialize<'de> for PricingResponse
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 PricingResponse
impl RefUnwindSafe for PricingResponse
impl Send for PricingResponse
impl Sync for PricingResponse
impl Unpin for PricingResponse
impl UnwindSafe for PricingResponse
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