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