open_payments_iso20022_reda::reda_001_001_04

Struct UnitPrice15

source
pub struct UnitPrice15 {
Show 19 fields pub tp: Option<TypeOfPrice9Code>, pub xtnded_tp: Option<Extended350Code>, pub pric_mtd: Option<PriceMethod1Code>, pub val_in_invstmt_ccy: Vec<PriceValue1>, pub val_in_altrntv_ccy: Option<Vec<PriceValue1>>, pub for_exctn_ind: bool, pub cum_dvdd_ind: bool, pub clctn_bsis: Option<f64>, pub estmtd_pric_ind: bool, pub nb_of_days_acrd: Option<f64>, pub taxbl_incm_per_shr: Option<ActiveOrHistoricCurrencyAnd13DecimalAmount>, pub taxbl_incm_per_shr_clctd: Option<TaxableIncomePerShareCalculated2Code>, pub xtnded_taxbl_incm_per_shr_clctd: Option<Extended350Code>, pub taxbl_incm_per_dvdd: Option<ActiveOrHistoricCurrencyAnd13DecimalAmount>, pub eu_dvdd_sts: Option<EUDividendStatus1Code>, pub xtnded_eu_dvdd_sts: Option<Extended350Code>, pub chrg_dtls: Option<Vec<Charge15>>, pub tax_lblty_dtls: Option<Vec<Tax17>>, pub tax_rfnd_dtls: Option<Vec<Tax17>>,
}

Fields§

§tp: Option<TypeOfPrice9Code>§xtnded_tp: Option<Extended350Code>§pric_mtd: Option<PriceMethod1Code>§val_in_invstmt_ccy: Vec<PriceValue1>§val_in_altrntv_ccy: Option<Vec<PriceValue1>>§for_exctn_ind: bool§cum_dvdd_ind: bool§clctn_bsis: Option<f64>§estmtd_pric_ind: bool§nb_of_days_acrd: Option<f64>§taxbl_incm_per_shr: Option<ActiveOrHistoricCurrencyAnd13DecimalAmount>§taxbl_incm_per_shr_clctd: Option<TaxableIncomePerShareCalculated2Code>§xtnded_taxbl_incm_per_shr_clctd: Option<Extended350Code>§taxbl_incm_per_dvdd: Option<ActiveOrHistoricCurrencyAnd13DecimalAmount>§eu_dvdd_sts: Option<EUDividendStatus1Code>§xtnded_eu_dvdd_sts: Option<Extended350Code>§chrg_dtls: Option<Vec<Charge15>>§tax_lblty_dtls: Option<Vec<Tax17>>§tax_rfnd_dtls: Option<Vec<Tax17>>

Trait Implementations§

source§

impl Clone for UnitPrice15

source§

fn clone(&self) -> UnitPrice15

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for UnitPrice15

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for UnitPrice15

source§

fn default() -> UnitPrice15

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for UnitPrice15

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl PartialEq for UnitPrice15

source§

fn eq(&self, other: &UnitPrice15) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for UnitPrice15

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for UnitPrice15

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,