pub struct ProfileViewDetailed<'a> {Show 21 fields
pub associated: Option<ProfileAssociated<'a>>,
pub avatar: Option<Uri<'a>>,
pub banner: Option<Uri<'a>>,
pub created_at: Option<Datetime>,
pub description: Option<CowStr<'a>>,
pub did: Did<'a>,
pub display_name: Option<CowStr<'a>>,
pub followers_count: Option<i64>,
pub follows_count: Option<i64>,
pub handle: Handle<'a>,
pub indexed_at: Option<Datetime>,
pub joined_via_starter_pack: Option<StarterPackViewBasic<'a>>,
pub labels: Option<Vec<Label<'a>>>,
pub pinned_post: Option<StrongRef<'a>>,
pub posts_count: Option<i64>,
pub pronouns: Option<CowStr<'a>>,
pub status: Option<StatusView<'a>>,
pub verification: Option<VerificationState<'a>>,
pub viewer: Option<ViewerState<'a>>,
pub website: Option<Uri<'a>>,
pub extra_data: BTreeMap<SmolStr, Data<'a>>,
}Fields§
§associated: Option<ProfileAssociated<'a>>§avatar: Option<Uri<'a>>§created_at: Option<Datetime>§description: Option<CowStr<'a>>§did: Did<'a>§display_name: Option<CowStr<'a>>§followers_count: Option<i64>§follows_count: Option<i64>§handle: Handle<'a>§indexed_at: Option<Datetime>§joined_via_starter_pack: Option<StarterPackViewBasic<'a>>§labels: Option<Vec<Label<'a>>>§pinned_post: Option<StrongRef<'a>>§posts_count: Option<i64>§pronouns: Option<CowStr<'a>>§status: Option<StatusView<'a>>§verification: Option<VerificationState<'a>>§viewer: Option<ViewerState<'a>>§website: Option<Uri<'a>>§extra_data: BTreeMap<SmolStr, Data<'a>>Trait Implementations§
Source§impl<'a> Clone for ProfileViewDetailed<'a>
impl<'a> Clone for ProfileViewDetailed<'a>
Source§fn clone(&self) -> ProfileViewDetailed<'a>
fn clone(&self) -> ProfileViewDetailed<'a>
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<'a> Debug for ProfileViewDetailed<'a>
impl<'a> Debug for ProfileViewDetailed<'a>
Source§impl<'de: 'a, 'a> Deserialize<'de> for ProfileViewDetailed<'a>
impl<'de: 'a, 'a> Deserialize<'de> for ProfileViewDetailed<'a>
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 IntoStatic for ProfileViewDetailed<'_>
impl IntoStatic for ProfileViewDetailed<'_>
Source§type Output = ProfileViewDetailed<'static>
type Output = ProfileViewDetailed<'static>
The “owned” variant of the type. For
Cow<'a, str>, this is Cow<'static, str>, for example.Source§fn into_static(self) -> Self::Output
fn into_static(self) -> Self::Output
Turns the value into an “owned” variant, which can then be returned, moved, etc. Read more
Source§impl<'a> PartialEq for ProfileViewDetailed<'a>
impl<'a> PartialEq for ProfileViewDetailed<'a>
Source§impl<'a> Serialize for ProfileViewDetailed<'a>
impl<'a> Serialize for ProfileViewDetailed<'a>
impl<'a> Eq for ProfileViewDetailed<'a>
impl<'a> StructuralPartialEq for ProfileViewDetailed<'a>
Auto Trait Implementations§
impl<'a> !Freeze for ProfileViewDetailed<'a>
impl<'a> RefUnwindSafe for ProfileViewDetailed<'a>
impl<'a> Send for ProfileViewDetailed<'a>
impl<'a> Sync for ProfileViewDetailed<'a>
impl<'a> Unpin for ProfileViewDetailed<'a>
impl<'a> UnwindSafe for ProfileViewDetailed<'a>
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.