pub struct ResponsePartitionKey {
pub dimensions: HashMap<String, String>,
}
Expand description
If PartitionBy
was specified in a DescribeDimensionKeys
request, the dimensions are returned in an array. Each element in the array specifies one dimension.
Fields§
§dimensions: HashMap<String, String>
A dimension map that contains the dimension(s) for this partition.
Trait Implementations§
Source§impl Clone for ResponsePartitionKey
impl Clone for ResponsePartitionKey
Source§fn clone(&self) -> ResponsePartitionKey
fn clone(&self) -> ResponsePartitionKey
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 ResponsePartitionKey
impl Debug for ResponsePartitionKey
Source§impl Default for ResponsePartitionKey
impl Default for ResponsePartitionKey
Source§fn default() -> ResponsePartitionKey
fn default() -> ResponsePartitionKey
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ResponsePartitionKey
impl<'de> Deserialize<'de> for ResponsePartitionKey
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 ResponsePartitionKey
impl PartialEq for ResponsePartitionKey
impl StructuralPartialEq for ResponsePartitionKey
Auto Trait Implementations§
impl Freeze for ResponsePartitionKey
impl RefUnwindSafe for ResponsePartitionKey
impl Send for ResponsePartitionKey
impl Sync for ResponsePartitionKey
impl Unpin for ResponsePartitionKey
impl UnwindSafe for ResponsePartitionKey
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