Enum ActionType
pub enum ActionType {
Balance = 1,
CalcValue = 2,
CalcPeriods = 3,
CalcYield = 4,
Combine = 5,
Merge = 6,
Split = 7,
Transform = 8,
TemplateCashflow = 9,
}
Expand description
The batch enums. Batch action type enumeration.
Variants§
Balance = 1
Balance the cashflow.
CalcValue = 2
Calculate the selected event’s value.
CalcPeriods = 3
Calculate the selected event’s periods.
CalcYield = 4
Calculate the overall yield.
Combine = 5
Combine two cashflows.
Merge = 6
Merge two cashflows.
Split = 7
Split a cashflow.
Transform = 8
Transform a cashflow.
TemplateCashflow = 9
Create a cashflow from a template group.
Trait Implementations§
§impl Clone for ActionType
impl Clone for ActionType
§fn clone(&self) -> ActionType
fn clone(&self) -> ActionType
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 more§impl Debug for ActionType
impl Debug for ActionType
§impl PartialEq for ActionType
impl PartialEq for ActionType
impl Copy for ActionType
impl Eq for ActionType
impl StructuralPartialEq for ActionType
Auto Trait Implementations§
impl Freeze for ActionType
impl RefUnwindSafe for ActionType
impl Send for ActionType
impl Sync for ActionType
impl Unpin for ActionType
impl UnwindSafe for ActionType
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