pub struct LiveUser {
pub face: String,
pub link: String,
pub title: String,
pub uid: u64,
pub uname: String,
}Expand description
直播的已关注者列表项
Fields§
§face: String直播者头像 URL
link: String直播链接
title: String直播标题
uid: u64直播者 ID
uname: String直播者昵称
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LiveUser
impl<'de> Deserialize<'de> for LiveUser
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 LiveUser
impl RefUnwindSafe for LiveUser
impl Send for LiveUser
impl Sync for LiveUser
impl Unpin for LiveUser
impl UnwindSafe for LiveUser
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