pub struct PwmInvestmentPlanSummary {
pub plan_id: Option<String>,
pub plan_name: Option<String>,
pub plan_type: Option<String>,
pub status: Option<String>,
pub source: Option<String>,
pub current_asset_usd: Option<String>,
pub accumulate_yield_usd: Option<String>,
pub investment_distribution: Option<Vec<PwmInvestmentDistribution>>,
pub created_time: Option<String>,
}Fields§
§plan_id: Option<String>§plan_name: Option<String>§plan_type: Option<String>§status: Option<String>§source: Option<String>§current_asset_usd: Option<String>§accumulate_yield_usd: Option<String>§investment_distribution: Option<Vec<PwmInvestmentDistribution>>§created_time: Option<String>Trait Implementations§
Source§impl Clone for PwmInvestmentPlanSummary
impl Clone for PwmInvestmentPlanSummary
Source§fn clone(&self) -> PwmInvestmentPlanSummary
fn clone(&self) -> PwmInvestmentPlanSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PwmInvestmentPlanSummary
impl Debug for PwmInvestmentPlanSummary
Source§impl<'de> Deserialize<'de> for PwmInvestmentPlanSummary
impl<'de> Deserialize<'de> for PwmInvestmentPlanSummary
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 PwmInvestmentPlanSummary
impl RefUnwindSafe for PwmInvestmentPlanSummary
impl Send for PwmInvestmentPlanSummary
impl Sync for PwmInvestmentPlanSummary
impl Unpin for PwmInvestmentPlanSummary
impl UnsafeUnpin for PwmInvestmentPlanSummary
impl UnwindSafe for PwmInvestmentPlanSummary
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