pub struct LocalPremiereDate {
pub value: NaiveDate,
pub countries: Vec<String>,
}Fields§
§value: NaiveDate§countries: Vec<String>Attribute countries must be used to specify the countries that the premiere date applies to. Value should be the two-letter country codes as defined in the ISO 3166 International Standard. Multiple countries can be grouped together in a comma-separated value string.
Auto Trait Implementations§
impl Freeze for LocalPremiereDate
impl RefUnwindSafe for LocalPremiereDate
impl Send for LocalPremiereDate
impl Sync for LocalPremiereDate
impl Unpin for LocalPremiereDate
impl UnwindSafe for LocalPremiereDate
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