pub struct ProfileViewData {Show 13 fields
pub associated: Option<ProfileAssociated>,
pub avatar: Option<String>,
pub created_at: Option<Datetime>,
pub description: Option<String>,
pub did: Did,
pub display_name: Option<String>,
pub handle: Handle,
pub indexed_at: Option<Datetime>,
pub labels: Option<Vec<Label>>,
pub pronouns: Option<String>,
pub status: Option<StatusView>,
pub verification: Option<VerificationState>,
pub viewer: Option<ViewerState>,
}
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>
§handle: Handle
§indexed_at: Option<Datetime>
§labels: Option<Vec<Label>>
§pronouns: Option<String>
§status: Option<StatusView>
§verification: Option<VerificationState>
§viewer: Option<ViewerState>
Trait Implementations§
Source§impl Clone for ProfileViewData
impl Clone for ProfileViewData
Source§fn clone(&self) -> ProfileViewData
fn clone(&self) -> ProfileViewData
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 ProfileViewData
impl Debug for ProfileViewData
Source§impl<'de> Deserialize<'de> for ProfileViewData
impl<'de> Deserialize<'de> for ProfileViewData
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 ProfileViewData
impl PartialEq for ProfileViewData
Source§impl Serialize for ProfileViewData
impl Serialize for ProfileViewData
impl Eq for ProfileViewData
impl StructuralPartialEq for ProfileViewData
Auto Trait Implementations§
impl Freeze for ProfileViewData
impl RefUnwindSafe for ProfileViewData
impl Send for ProfileViewData
impl Sync for ProfileViewData
impl Unpin for ProfileViewData
impl UnwindSafe for ProfileViewData
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.