pub struct PricingMeta {
pub plan_id: String,
pub payer: String,
pub request_id: String,
pub timestamp: DateTime<Utc>,
pub processing_time_ms: u32,
pub in_network_records_count: u32,
}
Expand description
Metadata for pricing responses
Fields§
§plan_id: String
Insurance plan identifier
payer: String
Insurance payer code
request_id: String
Unique request identifier
timestamp: DateTime<Utc>
Request timestamp in ISO 8601 format
processing_time_ms: u32
Processing time in milliseconds
in_network_records_count: u32
Number of in-network records found
Trait Implementations§
Source§impl Clone for PricingMeta
impl Clone for PricingMeta
Source§fn clone(&self) -> PricingMeta
fn clone(&self) -> PricingMeta
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 PricingMeta
impl Debug for PricingMeta
Source§impl<'de> Deserialize<'de> for PricingMeta
impl<'de> Deserialize<'de> for PricingMeta
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 PricingMeta
impl RefUnwindSafe for PricingMeta
impl Send for PricingMeta
impl Sync for PricingMeta
impl Unpin for PricingMeta
impl UnwindSafe for PricingMeta
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