pub struct PwmInstInvestmentPlanInfo {
pub plan_id: Option<String>,
pub plan_name: Option<String>,
pub plan_type: Option<String>,
pub subscription_uid: 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<PwmInstInvestmentDistribution>>,
pub created_time: Option<String>,
}Fields§
§plan_id: Option<String>§plan_name: Option<String>§plan_type: Option<String>§subscription_uid: Option<String>§status: Option<String>§source: Option<String>§current_asset_usd: Option<String>§accumulate_yield_usd: Option<String>§investment_distribution: Option<Vec<PwmInstInvestmentDistribution>>§created_time: Option<String>Trait Implementations§
Source§impl Clone for PwmInstInvestmentPlanInfo
impl Clone for PwmInstInvestmentPlanInfo
Source§fn clone(&self) -> PwmInstInvestmentPlanInfo
fn clone(&self) -> PwmInstInvestmentPlanInfo
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 PwmInstInvestmentPlanInfo
impl Debug for PwmInstInvestmentPlanInfo
Source§impl<'de> Deserialize<'de> for PwmInstInvestmentPlanInfo
impl<'de> Deserialize<'de> for PwmInstInvestmentPlanInfo
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 PwmInstInvestmentPlanInfo
impl RefUnwindSafe for PwmInstInvestmentPlanInfo
impl Send for PwmInstInvestmentPlanInfo
impl Sync for PwmInstInvestmentPlanInfo
impl Unpin for PwmInstInvestmentPlanInfo
impl UnsafeUnpin for PwmInstInvestmentPlanInfo
impl UnwindSafe for PwmInstInvestmentPlanInfo
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