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