pub struct HealthcareGroup {
pub type_yo: HealthcareType,
pub amount: String,
pub provider_id: String,
pub service_type_code: String,
pub payer_or_carrier_id: String,
pub approval_reject_reason_code: String,
}Expand description
A group of fields for a specific type of healthcare.
Fields§
§type_yo: HealthcareTypeThe type of healthcare cost.
amount: StringThe amount of this type.
provider_id: StringThe provider ID used for Mastercard and Discover IIAS requests.
service_type_code: StringThe service type code used for Mastercard and Discover IIAS requests.
payer_or_carrier_id: StringThr payer ID/carrier ID used for Mastercard and Discover IIAS requests.
approval_reject_reason_code: StringThe approval or reject reason code used for Mastercard and Discover IIAS requests.
Trait Implementations§
Source§impl Clone for HealthcareGroup
impl Clone for HealthcareGroup
Source§fn clone(&self) -> HealthcareGroup
fn clone(&self) -> HealthcareGroup
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 HealthcareGroup
impl Debug for HealthcareGroup
Source§impl Default for HealthcareGroup
impl Default for HealthcareGroup
Source§fn default() -> HealthcareGroup
fn default() -> HealthcareGroup
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HealthcareGroup
impl<'de> Deserialize<'de> for HealthcareGroup
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 HealthcareGroup
impl RefUnwindSafe for HealthcareGroup
impl Send for HealthcareGroup
impl Sync for HealthcareGroup
impl Unpin for HealthcareGroup
impl UnsafeUnpin for HealthcareGroup
impl UnwindSafe for HealthcareGroup
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