pub struct BreakdownByCountry2 {
pub ctry: String,
pub csh_in_fcst: Option<Vec<CashInForecast5>>,
pub csh_out_fcst: Option<Vec<CashOutForecast5>>,
pub net_csh_fcst: Option<Vec<NetCashForecast4>>,
}Fields§
§ctry: String§csh_in_fcst: Option<Vec<CashInForecast5>>§csh_out_fcst: Option<Vec<CashOutForecast5>>§net_csh_fcst: Option<Vec<NetCashForecast4>>Implementations§
Source§impl BreakdownByCountry2
impl BreakdownByCountry2
pub fn validate(&self) -> Result<(), ValidationError>
Auto Trait Implementations§
impl Freeze for BreakdownByCountry2
impl RefUnwindSafe for BreakdownByCountry2
impl Send for BreakdownByCountry2
impl Sync for BreakdownByCountry2
impl Unpin for BreakdownByCountry2
impl UnwindSafe for BreakdownByCountry2
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