pub struct CubeRegionKey {
pub id: String,
pub include: Option<bool>,
pub remove_prefix: Option<bool>,
pub valid_from: Option<String>,
pub valid_to: Option<String>,
pub time_range: Option<TimeRangeValue>,
pub values: Option<Vec<StringOrScv>>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
A set of values for a dimension that defines a data cube region.
Fields§
§id: String
§include: Option<bool>
§remove_prefix: Option<bool>
§valid_from: Option<String>
§valid_to: Option<String>
§time_range: Option<TimeRangeValue>
§values: Option<Vec<StringOrScv>>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Clone for CubeRegionKey
impl Clone for CubeRegionKey
Source§fn clone(&self) -> CubeRegionKey
fn clone(&self) -> CubeRegionKey
Returns a copy 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 CubeRegionKey
impl Debug for CubeRegionKey
Source§impl Default for CubeRegionKey
impl Default for CubeRegionKey
Source§fn default() -> CubeRegionKey
fn default() -> CubeRegionKey
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CubeRegionKey
impl<'de> Deserialize<'de> for CubeRegionKey
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 CubeRegionKey
impl PartialEq for CubeRegionKey
Source§impl Serialize for CubeRegionKey
impl Serialize for CubeRegionKey
impl Eq for CubeRegionKey
impl StructuralPartialEq for CubeRegionKey
Auto Trait Implementations§
impl Freeze for CubeRegionKey
impl RefUnwindSafe for CubeRegionKey
impl Send for CubeRegionKey
impl Sync for CubeRegionKey
impl Unpin for CubeRegionKey
impl UnwindSafe for CubeRegionKey
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