pub struct AllPrintings {
pub meta: Meta,
pub data: HashMap<String, Set>,
}Expand description
Every printing of every card, grouped by set.
Fields§
§meta: MetaMetadata about the data set.
data: HashMap<String, Set>Sets grouped by name.
Trait Implementations§
Source§impl Clone for AllPrintings
impl Clone for AllPrintings
Source§fn clone(&self) -> AllPrintings
fn clone(&self) -> AllPrintings
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 AllPrintings
impl Debug for AllPrintings
Source§impl<'de> Deserialize<'de> for AllPrintings
impl<'de> Deserialize<'de> for AllPrintings
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 AllPrintings
impl RefUnwindSafe for AllPrintings
impl Send for AllPrintings
impl Sync for AllPrintings
impl Unpin for AllPrintings
impl UnwindSafe for AllPrintings
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