pub struct PricingResponse {
pub data: HashMap<String, Vec<RateData>>,
pub meta: PricingMeta,
}
Expand description
Response containing pricing data
Fields§
§data: HashMap<String, Vec<RateData>>
Pricing data organized by NPI
meta: PricingMeta
Response metadata
Trait Implementations§
Source§impl Clone for PricingResponse
impl Clone for PricingResponse
Source§fn clone(&self) -> PricingResponse
fn clone(&self) -> PricingResponse
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 PricingResponse
impl Debug for PricingResponse
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