pub struct List {Show 16 fields
pub name: EmojiString,
pub description: EmojiString,
pub privacy: ListPrivacy,
pub share_link: String,
pub type: ListType,
pub display_numbers: bool,
pub allow_comments: bool,
pub sort_by: ListSortBy,
pub sort_how: ListSortHow,
pub created_at: OffsetDateTime,
pub updated_at: OffsetDateTime,
pub item_count: u64,
pub comment_count: u64,
pub likes: u64,
pub ids: Ids,
pub user: User,
}Fields§
§name: EmojiString§description: EmojiString§privacy: ListPrivacy§type: ListType§display_numbers: bool§allow_comments: bool§sort_by: ListSortBy§sort_how: ListSortHow§created_at: OffsetDateTime§updated_at: OffsetDateTime§item_count: u64§comment_count: u64§likes: u64§ids: Ids§user: UserTrait Implementations§
Source§impl<'de> Deserialize<'de> for List
impl<'de> Deserialize<'de> for List
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
impl Eq for List
impl StructuralPartialEq for List
Auto Trait Implementations§
impl Freeze for List
impl RefUnwindSafe for List
impl Send for List
impl Sync for List
impl Unpin for List
impl UnwindSafe for List
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