pub enum AnalyticalMethod {
TrendAnalysis,
RatioAnalysis,
ReasonablenessTest,
Regression,
Comparison,
}Expand description
Method used to perform the analytical procedure.
Variants§
TrendAnalysis
Analysis of changes over time
RatioAnalysis
Computation of key financial ratios
ReasonablenessTest
Assessment of whether recorded amounts are reasonable
Regression
Statistical regression to develop an expectation
Comparison
Comparison against industry data or prior periods
Trait Implementations§
Source§impl Clone for AnalyticalMethod
impl Clone for AnalyticalMethod
Source§fn clone(&self) -> AnalyticalMethod
fn clone(&self) -> AnalyticalMethod
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 AnalyticalMethod
impl Debug for AnalyticalMethod
Source§impl Default for AnalyticalMethod
impl Default for AnalyticalMethod
Source§fn default() -> AnalyticalMethod
fn default() -> AnalyticalMethod
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AnalyticalMethod
impl<'de> Deserialize<'de> for AnalyticalMethod
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
Source§impl Hash for AnalyticalMethod
impl Hash for AnalyticalMethod
Source§impl PartialEq for AnalyticalMethod
impl PartialEq for AnalyticalMethod
Source§impl Serialize for AnalyticalMethod
impl Serialize for AnalyticalMethod
impl Copy for AnalyticalMethod
impl Eq for AnalyticalMethod
impl StructuralPartialEq for AnalyticalMethod
Auto Trait Implementations§
impl Freeze for AnalyticalMethod
impl RefUnwindSafe for AnalyticalMethod
impl Send for AnalyticalMethod
impl Sync for AnalyticalMethod
impl Unpin for AnalyticalMethod
impl UnsafeUnpin for AnalyticalMethod
impl UnwindSafe for AnalyticalMethod
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.