pub struct VipCoinGroup {
pub vip_level: Option<String>,
pub list: Option<Vec<VipCoinDetail>>,
}Fields§
§vip_level: Option<String>§list: Option<Vec<VipCoinDetail>>Trait Implementations§
Source§impl Clone for VipCoinGroup
impl Clone for VipCoinGroup
Source§fn clone(&self) -> VipCoinGroup
fn clone(&self) -> VipCoinGroup
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 VipCoinGroup
impl Debug for VipCoinGroup
Source§impl<'de> Deserialize<'de> for VipCoinGroup
impl<'de> Deserialize<'de> for VipCoinGroup
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 VipCoinGroup
impl RefUnwindSafe for VipCoinGroup
impl Send for VipCoinGroup
impl Sync for VipCoinGroup
impl Unpin for VipCoinGroup
impl UnsafeUnpin for VipCoinGroup
impl UnwindSafe for VipCoinGroup
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