pub struct ThreadsUserProfile {
pub id: Option<String>,
pub username: Option<String>,
pub name: Option<String>,
pub threads_profile_picture_url: Option<String>,
pub threads_biography: Option<String>,
/* private fields */
}
Fields§
§id: Option<String>
§username: Option<String>
§name: Option<String>
§threads_profile_picture_url: Option<String>
§threads_biography: Option<String>
Trait Implementations§
Source§impl Debug for ThreadsUserProfile
impl Debug for ThreadsUserProfile
Source§impl<'de> Deserialize<'de> for ThreadsUserProfile
impl<'de> Deserialize<'de> for ThreadsUserProfile
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 ThreadsUserProfile
impl RefUnwindSafe for ThreadsUserProfile
impl Send for ThreadsUserProfile
impl Sync for ThreadsUserProfile
impl Unpin for ThreadsUserProfile
impl UnwindSafe for ThreadsUserProfile
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