pub struct RwaProduct {
pub product_id: Option<i64>,
pub coin: Option<String>,
pub name: Option<String>,
pub apy: Option<String>,
pub min_stake_amount: Option<String>,
pub status: Option<String>,
}Fields§
§product_id: Option<i64>§coin: Option<String>§name: Option<String>§apy: Option<String>§min_stake_amount: Option<String>§status: Option<String>Trait Implementations§
Source§impl Clone for RwaProduct
impl Clone for RwaProduct
Source§fn clone(&self) -> RwaProduct
fn clone(&self) -> RwaProduct
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 RwaProduct
impl Debug for RwaProduct
Source§impl<'de> Deserialize<'de> for RwaProduct
impl<'de> Deserialize<'de> for RwaProduct
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 RwaProduct
impl RefUnwindSafe for RwaProduct
impl Send for RwaProduct
impl Sync for RwaProduct
impl Unpin for RwaProduct
impl UnsafeUnpin for RwaProduct
impl UnwindSafe for RwaProduct
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