pub struct RateData {
pub code: String,
pub code_type: String,
pub negotiated_type: String,
pub min_rate: f64,
pub max_rate: f64,
pub avg_rate: f64,
pub instances: u32,
}Expand description
Rate data for a specific billing code
Fields§
§code: StringMedical billing code
code_type: StringMedical billing code standard
negotiated_type: StringType of negotiated rate
min_rate: f64Minimum contracted rate
max_rate: f64Maximum contracted rate
avg_rate: f64Average contracted rate
instances: u32Number of rate instances found
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RateData
impl<'de> Deserialize<'de> for RateData
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 RateData
impl RefUnwindSafe for RateData
impl Send for RateData
impl Sync for RateData
impl Unpin for RateData
impl UnwindSafe for RateData
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