pub struct OwnerInfo {
pub x_handle: Option<String>,
pub x_name: Option<String>,
pub x_avatar: Option<String>,
pub x_bio: Option<String>,
pub x_follower_count: Option<u64>,
pub x_following_count: Option<u64>,
pub x_verified: Option<bool>,
}Fields§
§x_handle: Option<String>§x_name: Option<String>§x_avatar: Option<String>§x_bio: Option<String>§x_follower_count: Option<u64>§x_following_count: Option<u64>§x_verified: Option<bool>Trait Implementations§
Source§impl<'de> Deserialize<'de> for OwnerInfo
impl<'de> Deserialize<'de> for OwnerInfo
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 OwnerInfo
impl RefUnwindSafe for OwnerInfo
impl Send for OwnerInfo
impl Sync for OwnerInfo
impl Unpin for OwnerInfo
impl UnsafeUnpin for OwnerInfo
impl UnwindSafe for OwnerInfo
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