pub struct DataKeyValue {
pub id: String,
pub include: Option<bool>,
pub remove_prefix: Option<bool>,
pub value: String,
pub other: Option<HashMap<String, Value>>,
}
Expand description
A dimension value for the purpose of defining a distinct data key.
Fields§
§id: String
§include: Option<bool>
§remove_prefix: Option<bool>
§value: String
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Clone for DataKeyValue
impl Clone for DataKeyValue
Source§fn clone(&self) -> DataKeyValue
fn clone(&self) -> DataKeyValue
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 DataKeyValue
impl Debug for DataKeyValue
Source§impl Default for DataKeyValue
impl Default for DataKeyValue
Source§fn default() -> DataKeyValue
fn default() -> DataKeyValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DataKeyValue
impl<'de> Deserialize<'de> for DataKeyValue
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 DataKeyValue
impl PartialEq for DataKeyValue
Source§impl Serialize for DataKeyValue
impl Serialize for DataKeyValue
impl Eq for DataKeyValue
impl StructuralPartialEq for DataKeyValue
Auto Trait Implementations§
impl Freeze for DataKeyValue
impl RefUnwindSafe for DataKeyValue
impl Send for DataKeyValue
impl Sync for DataKeyValue
impl Unpin for DataKeyValue
impl UnwindSafe for DataKeyValue
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