pub struct SetDetail {Show 14 fields
pub code: String,
pub name: String,
pub type_: String,
pub block: Option<String>,
pub gatherer_code: Option<String>,
pub old_code: Option<String>,
pub magic_cards_info_code: Option<String>,
pub release_date: NaiveDate,
pub border: String,
pub expansion: Option<String>,
pub online_only: Option<bool>,
pub booster: Vec<Booster>,
pub mkm_name: Option<String>,
pub mkm_id: Option<u32>,
}Fields§
§code: String§name: String§type_: String§block: Option<String>§gatherer_code: Option<String>§old_code: Option<String>§magic_cards_info_code: Option<String>§release_date: NaiveDate§border: String§expansion: Option<String>§online_only: Option<bool>§booster: Vec<Booster>§mkm_name: Option<String>§mkm_id: Option<u32>Trait Implementations§
Source§impl<'de> Deserialize<'de> for SetDetail
impl<'de> Deserialize<'de> for SetDetail
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 SetDetail
impl RefUnwindSafe for SetDetail
impl Send for SetDetail
impl Sync for SetDetail
impl Unpin for SetDetail
impl UnwindSafe for SetDetail
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more