pub struct FundamentalAccountingConcept {
pub formula: Option<String>,
pub label: Option<String>,
pub order: Option<u32>,
pub unit: Option<String>,
pub value: Option<f64>,
}
Fields§
§formula: Option<String>
§label: Option<String>
§order: Option<u32>
§unit: Option<String>
§value: Option<f64>
Trait Implementations§
Source§impl Clone for FundamentalAccountingConcept
impl Clone for FundamentalAccountingConcept
Source§fn clone(&self) -> FundamentalAccountingConcept
fn clone(&self) -> FundamentalAccountingConcept
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 FundamentalAccountingConcept
impl Debug for FundamentalAccountingConcept
Source§impl<'de> Deserialize<'de> for FundamentalAccountingConcept
impl<'de> Deserialize<'de> for FundamentalAccountingConcept
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 FundamentalAccountingConcept
impl RefUnwindSafe for FundamentalAccountingConcept
impl Send for FundamentalAccountingConcept
impl Sync for FundamentalAccountingConcept
impl Unpin for FundamentalAccountingConcept
impl UnwindSafe for FundamentalAccountingConcept
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