pub struct CountryPricing {
pub country_code: String,
pub country_name: String,
pub country_prefix: String,
pub networks: Vec<CountryNetwork>,
}
Fields§
§country_code: String
§country_name: String
§country_prefix: String
§networks: Vec<CountryNetwork>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CountryPricing
impl<'de> Deserialize<'de> for CountryPricing
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 CountryPricing
impl RefUnwindSafe for CountryPricing
impl Send for CountryPricing
impl Sync for CountryPricing
impl Unpin for CountryPricing
impl UnwindSafe for CountryPricing
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