pub struct ListViewBasic {
pub avatar: Option<String>,
pub cid: String,
pub indexed_at: Option<Datetime>,
pub labels: Option<Vec<Label>>,
pub list_item_count: Option<i64>,
pub name: String,
pub purpose: ListPurpose,
pub uri: AtUri,
pub viewer: Option<ListViewerState>,
}Fields§
§avatar: Option<String>§cid: String§indexed_at: Option<Datetime>§labels: Option<Vec<Label>>§list_item_count: Option<i64>§name: String§purpose: ListPurpose§uri: AtUri§viewer: Option<ListViewerState>Trait Implementations§
Source§impl Clone for ListViewBasic
impl Clone for ListViewBasic
Source§fn clone(&self) -> ListViewBasic
fn clone(&self) -> ListViewBasic
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListViewBasic
impl Debug for ListViewBasic
Source§impl<'de> Deserialize<'de> for ListViewBasic
impl<'de> Deserialize<'de> for ListViewBasic
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
Auto Trait Implementations§
impl Freeze for ListViewBasic
impl RefUnwindSafe for ListViewBasic
impl Send for ListViewBasic
impl Sync for ListViewBasic
impl Unpin for ListViewBasic
impl UnsafeUnpin for ListViewBasic
impl UnwindSafe for ListViewBasic
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