pub struct IntangibleAsset {
pub asset_type: String,
pub fair_value: Decimal,
pub useful_life_years: Option<u8>,
}Expand description
Intangible asset acquired in an acquisition.
Fields§
§asset_type: StringAsset type (e.g., “customer_relationships”, “brand”, “technology”).
fair_value: DecimalFair value.
useful_life_years: Option<u8>Useful life in years (None = indefinite).
Trait Implementations§
Source§impl Clone for IntangibleAsset
impl Clone for IntangibleAsset
Source§fn clone(&self) -> IntangibleAsset
fn clone(&self) -> IntangibleAsset
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 IntangibleAsset
impl Debug for IntangibleAsset
Source§impl<'de> Deserialize<'de> for IntangibleAsset
impl<'de> Deserialize<'de> for IntangibleAsset
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 IntangibleAsset
impl RefUnwindSafe for IntangibleAsset
impl Send for IntangibleAsset
impl Sync for IntangibleAsset
impl Unpin for IntangibleAsset
impl UnsafeUnpin for IntangibleAsset
impl UnwindSafe for IntangibleAsset
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