pub struct CardBg {
pub id: u64,
pub name: String,
pub image: String,
pub jump_url: Option<String>,
pub fan: Option<FanInfo>,
pub type: String,
}Expand description
评论条目装扮信息
Fields§
§id: u64§name: String§image: String§jump_url: Option<String>§fan: Option<FanInfo>§type: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for CardBg
impl<'de> Deserialize<'de> for CardBg
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 CardBg
impl RefUnwindSafe for CardBg
impl Send for CardBg
impl Sync for CardBg
impl Unpin for CardBg
impl UnsafeUnpin for CardBg
impl UnwindSafe for CardBg
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