pub struct NPVMetric {
pub snas: MoneyPerActivity,
}Expand description
Net Present Value (NPV) tool metric.
In the NPV appraisal tool we compare options using the Specific Net Annualised Surplus (SNAS) expressed per unit activity. Higher values indicate more profitable investments.
Fields§
§snas: MoneyPerActivityThe calculated SNAS value for this metric
Implementations§
Trait Implementations§
Source§impl ComparableMetric for NPVMetric
impl ComparableMetric for NPVMetric
impl MetricTrait for NPVMetric
NPVMetric implements the MetricTrait supertrait.
Auto Trait Implementations§
impl Freeze for NPVMetric
impl RefUnwindSafe for NPVMetric
impl Send for NPVMetric
impl Sync for NPVMetric
impl Unpin for NPVMetric
impl UnsafeUnpin for NPVMetric
impl UnwindSafe for NPVMetric
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more