pub struct MisstatementReference {
pub misstatement_id: Uuid,
pub description: String,
pub amount: Option<Decimal>,
pub misstatement_type: MisstatementType,
}Expand description
Misstatement reference in conclusion.
Fields§
§misstatement_id: UuidMisstatement ID.
description: StringDescription.
amount: Option<Decimal>Amount (if quantified).
misstatement_type: MisstatementTypeIs it factual, judgmental, or projected.
Trait Implementations§
Source§impl Clone for MisstatementReference
impl Clone for MisstatementReference
Source§fn clone(&self) -> MisstatementReference
fn clone(&self) -> MisstatementReference
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 MisstatementReference
impl Debug for MisstatementReference
Source§impl<'de> Deserialize<'de> for MisstatementReference
impl<'de> Deserialize<'de> for MisstatementReference
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 MisstatementReference
impl RefUnwindSafe for MisstatementReference
impl Send for MisstatementReference
impl Sync for MisstatementReference
impl Unpin for MisstatementReference
impl UnwindSafe for MisstatementReference
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