pub struct CountryExposure {
pub country_code: String,
pub exposure_type: CountryExposureType,
pub risk_category: CountryRiskCategory,
}Expand description
Country risk classification for geographic exposure.
Fields§
§country_code: StringCountry code (ISO 3166-1 alpha-2)
exposure_type: CountryExposureTypeExposure type
risk_category: CountryRiskCategoryRisk category
Trait Implementations§
Source§impl Clone for CountryExposure
impl Clone for CountryExposure
Source§fn clone(&self) -> CountryExposure
fn clone(&self) -> CountryExposure
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 CountryExposure
impl Debug for CountryExposure
Source§impl<'de> Deserialize<'de> for CountryExposure
impl<'de> Deserialize<'de> for CountryExposure
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 CountryExposure
impl RefUnwindSafe for CountryExposure
impl Send for CountryExposure
impl Sync for CountryExposure
impl Unpin for CountryExposure
impl UnwindSafe for CountryExposure
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