pub struct ICTransactionTypeDistribution {
pub goods_sale: f64,
pub service_provided: f64,
pub loan: f64,
pub dividend: f64,
pub management_fee: f64,
pub royalty: f64,
pub cost_sharing: f64,
}Expand description
IC transaction type distribution.
Fields§
§goods_sale: f64Goods sales between entities
service_provided: f64Services provided
loan: f64Intercompany loans
dividend: f64Dividends
management_fee: f64Management fees
royalty: f64Royalties
cost_sharing: f64Cost sharing
Trait Implementations§
Source§impl Clone for ICTransactionTypeDistribution
impl Clone for ICTransactionTypeDistribution
Source§fn clone(&self) -> ICTransactionTypeDistribution
fn clone(&self) -> ICTransactionTypeDistribution
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<'de> Deserialize<'de> for ICTransactionTypeDistribution
impl<'de> Deserialize<'de> for ICTransactionTypeDistribution
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 ICTransactionTypeDistribution
impl RefUnwindSafe for ICTransactionTypeDistribution
impl Send for ICTransactionTypeDistribution
impl Sync for ICTransactionTypeDistribution
impl Unpin for ICTransactionTypeDistribution
impl UnwindSafe for ICTransactionTypeDistribution
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