pub struct LabelerViewData {
pub cid: Cid,
pub creator: ProfileView,
pub indexed_at: Datetime,
pub labels: Option<Vec<Label>>,
pub like_count: Option<usize>,
pub uri: String,
pub viewer: Option<LabelerViewerState>,
}
Available on crate feature
namespace-appbsky
only.Fields§
§cid: Cid
§creator: ProfileView
§indexed_at: Datetime
§labels: Option<Vec<Label>>
§like_count: Option<usize>
§uri: String
§viewer: Option<LabelerViewerState>
Trait Implementations§
Source§impl Clone for LabelerViewData
impl Clone for LabelerViewData
Source§fn clone(&self) -> LabelerViewData
fn clone(&self) -> LabelerViewData
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 LabelerViewData
impl Debug for LabelerViewData
Source§impl<'de> Deserialize<'de> for LabelerViewData
impl<'de> Deserialize<'de> for LabelerViewData
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 LabelerViewData
impl PartialEq for LabelerViewData
Source§impl Serialize for LabelerViewData
impl Serialize for LabelerViewData
impl Eq for LabelerViewData
impl StructuralPartialEq for LabelerViewData
Auto Trait Implementations§
impl Freeze for LabelerViewData
impl RefUnwindSafe for LabelerViewData
impl Send for LabelerViewData
impl Sync for LabelerViewData
impl Unpin for LabelerViewData
impl UnwindSafe for LabelerViewData
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.