pub struct ReleaseDate {
pub certification: Option<String>,
pub iso_639_1: Option<String>,
pub note: Option<String>,
pub release_date: DateTime<Utc>,
pub kind: ReleaseDateKind,
}
Fields§
§certification: Option<String>
§iso_639_1: Option<String>
§note: Option<String>
§release_date: DateTime<Utc>
§kind: ReleaseDateKind
Trait Implementations§
Source§impl Debug for ReleaseDate
impl Debug for ReleaseDate
Source§impl<'de> Deserialize<'de> for ReleaseDate
impl<'de> Deserialize<'de> for ReleaseDate
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 ReleaseDate
impl RefUnwindSafe for ReleaseDate
impl Send for ReleaseDate
impl Sync for ReleaseDate
impl Unpin for ReleaseDate
impl UnwindSafe for ReleaseDate
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