pub struct MarketLocationProperties {
pub market_location_property: MarketLocationProperty,
pub execution_time_from: String,
pub execution_time_until: Option<String>,
}Expand description
Property of a market location valid for a specific time slice.
Fields§
§market_location_property: MarketLocationProperty§execution_time_from: String§execution_time_until: Option<String>Trait Implementations§
Source§impl Clone for MarketLocationProperties
impl Clone for MarketLocationProperties
Source§fn clone(&self) -> MarketLocationProperties
fn clone(&self) -> MarketLocationProperties
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MarketLocationProperties
impl Debug for MarketLocationProperties
Source§impl<'de> Deserialize<'de> for MarketLocationProperties
impl<'de> Deserialize<'de> for MarketLocationProperties
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
Source§impl PartialEq for MarketLocationProperties
impl PartialEq for MarketLocationProperties
Source§fn eq(&self, other: &MarketLocationProperties) -> bool
fn eq(&self, other: &MarketLocationProperties) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MarketLocationProperties
impl Serialize for MarketLocationProperties
impl StructuralPartialEq for MarketLocationProperties
Auto Trait Implementations§
impl Freeze for MarketLocationProperties
impl RefUnwindSafe for MarketLocationProperties
impl Send for MarketLocationProperties
impl Sync for MarketLocationProperties
impl Unpin for MarketLocationProperties
impl UnsafeUnpin for MarketLocationProperties
impl UnwindSafe for MarketLocationProperties
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