pub enum HyperinflationStatus {
NotHyperinflationary,
Hyperinflationary,
}Expand description
Hyperinflation status of an entity’s functional currency. Captured per-entity per-period because a country can transition in or out of hyperinflation across reporting cycles (e.g. Argentina entered hyperinflationary status in 2018 per IAS 29 criteria; Türkiye did so in 2022).
Variants§
NotHyperinflationary
The functional currency is not hyperinflationary. Standard IAS 21 translation applies.
Hyperinflationary
The functional currency is hyperinflationary; IAS 29 restatement applies before IAS 21 translation per IAS 21 § 43. The closing rate is used for all items per IAS 21 § 42(b).
Implementations§
Source§impl HyperinflationStatus
impl HyperinflationStatus
Sourcepub fn requires_restatement(&self) -> bool
pub fn requires_restatement(&self) -> bool
Returns true when this status requires IAS 29 restatement
before IAS 21 translation.
Trait Implementations§
Source§impl Clone for HyperinflationStatus
impl Clone for HyperinflationStatus
Source§fn clone(&self) -> HyperinflationStatus
fn clone(&self) -> HyperinflationStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 HyperinflationStatus
impl Debug for HyperinflationStatus
Source§impl Default for HyperinflationStatus
impl Default for HyperinflationStatus
Source§fn default() -> HyperinflationStatus
fn default() -> HyperinflationStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HyperinflationStatus
impl<'de> Deserialize<'de> for HyperinflationStatus
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 HyperinflationStatus
impl Hash for HyperinflationStatus
Source§impl PartialEq for HyperinflationStatus
impl PartialEq for HyperinflationStatus
Source§fn eq(&self, other: &HyperinflationStatus) -> bool
fn eq(&self, other: &HyperinflationStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for HyperinflationStatus
impl Serialize for HyperinflationStatus
impl Copy for HyperinflationStatus
impl Eq for HyperinflationStatus
impl StructuralPartialEq for HyperinflationStatus
Auto Trait Implementations§
impl Freeze for HyperinflationStatus
impl RefUnwindSafe for HyperinflationStatus
impl Send for HyperinflationStatus
impl Sync for HyperinflationStatus
impl Unpin for HyperinflationStatus
impl UnsafeUnpin for HyperinflationStatus
impl UnwindSafe for HyperinflationStatus
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.