pub struct ProfileViewDetailedData {Show 20 fields
pub associated: Option<ProfileAssociated>,
pub avatar: Option<String>,
pub banner: Option<String>,
pub created_at: Option<Datetime>,
pub description: Option<String>,
pub did: Did,
pub display_name: Option<String>,
pub followers_count: Option<i64>,
pub follows_count: Option<i64>,
pub handle: Handle,
pub indexed_at: Option<Datetime>,
pub joined_via_starter_pack: Option<StarterPackViewBasic>,
pub labels: Option<Vec<Label>>,
pub pinned_post: Option<Main>,
pub posts_count: Option<i64>,
pub pronouns: Option<String>,
pub status: Option<StatusView>,
pub verification: Option<VerificationState>,
pub viewer: Option<ViewerState>,
pub website: Option<String>,
}
Available on crate feature
namespace-appbsky
only.Fields§
§associated: Option<ProfileAssociated>
§avatar: Option<String>
§created_at: Option<Datetime>
§description: Option<String>
§did: Did
§display_name: Option<String>
§followers_count: Option<i64>
§follows_count: Option<i64>
§handle: Handle
§indexed_at: Option<Datetime>
§joined_via_starter_pack: Option<StarterPackViewBasic>
§labels: Option<Vec<Label>>
§pinned_post: Option<Main>
§posts_count: Option<i64>
§pronouns: Option<String>
§status: Option<StatusView>
§verification: Option<VerificationState>
§viewer: Option<ViewerState>
§website: Option<String>
Trait Implementations§
Source§impl Clone for ProfileViewDetailedData
impl Clone for ProfileViewDetailedData
Source§fn clone(&self) -> ProfileViewDetailedData
fn clone(&self) -> ProfileViewDetailedData
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ProfileViewDetailedData
impl Debug for ProfileViewDetailedData
Source§impl<'de> Deserialize<'de> for ProfileViewDetailedData
impl<'de> Deserialize<'de> for ProfileViewDetailedData
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
Source§impl PartialEq for ProfileViewDetailedData
impl PartialEq for ProfileViewDetailedData
Source§impl Serialize for ProfileViewDetailedData
impl Serialize for ProfileViewDetailedData
impl Eq for ProfileViewDetailedData
impl StructuralPartialEq for ProfileViewDetailedData
Auto Trait Implementations§
impl Freeze for ProfileViewDetailedData
impl RefUnwindSafe for ProfileViewDetailedData
impl Send for ProfileViewDetailedData
impl Sync for ProfileViewDetailedData
impl Unpin for ProfileViewDetailedData
impl UnwindSafe for ProfileViewDetailedData
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.