pub struct TrendViewData {
pub actors: Vec<ProfileViewBasic>,
pub category: Option<String>,
pub display_name: String,
pub link: String,
pub post_count: i64,
pub started_at: Datetime,
pub status: Option<String>,
pub topic: String,
}
Available on crate feature
namespace-appbsky
only.Fields§
§actors: Vec<ProfileViewBasic>
§category: Option<String>
§display_name: String
§link: String
§post_count: i64
§started_at: Datetime
§status: Option<String>
§topic: String
Trait Implementations§
Source§impl Clone for TrendViewData
impl Clone for TrendViewData
Source§fn clone(&self) -> TrendViewData
fn clone(&self) -> TrendViewData
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 TrendViewData
impl Debug for TrendViewData
Source§impl<'de> Deserialize<'de> for TrendViewData
impl<'de> Deserialize<'de> for TrendViewData
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 TrendViewData
impl PartialEq for TrendViewData
Source§impl Serialize for TrendViewData
impl Serialize for TrendViewData
impl Eq for TrendViewData
impl StructuralPartialEq for TrendViewData
Auto Trait Implementations§
impl Freeze for TrendViewData
impl RefUnwindSafe for TrendViewData
impl Send for TrendViewData
impl Sync for TrendViewData
impl Unpin for TrendViewData
impl UnwindSafe for TrendViewData
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.