pub struct ListDoc {
pub key: String,
pub name: Option<String>,
pub edition_count: Option<u32>,
pub seed_count: Option<u32>,
}Expand description
A list document returned by /search/lists.json.
Fields§
§key: String§name: Option<String>§edition_count: Option<u32>§seed_count: Option<u32>Trait Implementations§
Source§impl<'de> Deserialize<'de> for ListDoc
impl<'de> Deserialize<'de> for ListDoc
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 ListDoc
impl RefUnwindSafe for ListDoc
impl Send for ListDoc
impl Sync for ListDoc
impl Unpin for ListDoc
impl UnsafeUnpin for ListDoc
impl UnwindSafe for ListDoc
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