pub struct Misstatement {
pub description: String,
pub amount: Decimal,
pub classification: MisstatementType,
pub account_area: String,
pub corrected: bool,
}Expand description
A misstatement identified by a component auditor.
Fields§
§description: StringDescription of the misstatement.
amount: DecimalMonetary amount of the misstatement.
classification: MisstatementTypeClassification of the misstatement.
account_area: StringAccount area or financial statement line where the misstatement was found.
corrected: boolWhether the misstatement was corrected by management.
Trait Implementations§
Source§impl Clone for Misstatement
impl Clone for Misstatement
Source§fn clone(&self) -> Misstatement
fn clone(&self) -> Misstatement
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 Misstatement
impl Debug for Misstatement
Source§impl<'de> Deserialize<'de> for Misstatement
impl<'de> Deserialize<'de> for Misstatement
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
Auto Trait Implementations§
impl Freeze for Misstatement
impl RefUnwindSafe for Misstatement
impl Send for Misstatement
impl Sync for Misstatement
impl Unpin for Misstatement
impl UnsafeUnpin for Misstatement
impl UnwindSafe for Misstatement
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