pub struct TerritoryInfo {
pub code: String,
pub included: bool,
pub start_date: Option<DateTime<Utc>>,
pub end_date: Option<DateTime<Utc>>,
pub distribution_channels: Vec<String>,
}
Fields§
§code: String
§included: bool
§start_date: Option<DateTime<Utc>>
§end_date: Option<DateTime<Utc>>
§distribution_channels: Vec<String>
Trait Implementations§
Source§impl Clone for TerritoryInfo
impl Clone for TerritoryInfo
Source§fn clone(&self) -> TerritoryInfo
fn clone(&self) -> TerritoryInfo
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 TerritoryInfo
impl Debug for TerritoryInfo
Source§impl<'de> Deserialize<'de> for TerritoryInfo
impl<'de> Deserialize<'de> for TerritoryInfo
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 TerritoryInfo
impl RefUnwindSafe for TerritoryInfo
impl Send for TerritoryInfo
impl Sync for TerritoryInfo
impl Unpin for TerritoryInfo
impl UnwindSafe for TerritoryInfo
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