pub struct ParameterMapping {
pub parameter_id: String,
pub card_id: i32,
pub target: Value,
}
Expand description
Represents a parameter mapping between dashboard and card
Fields§
§parameter_id: String
Dashboard parameter ID
card_id: i32
Card parameter ID
target: Value
Target field or variable
Trait Implementations§
Source§impl Clone for ParameterMapping
impl Clone for ParameterMapping
Source§fn clone(&self) -> ParameterMapping
fn clone(&self) -> ParameterMapping
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 ParameterMapping
impl Debug for ParameterMapping
Source§impl<'de> Deserialize<'de> for ParameterMapping
impl<'de> Deserialize<'de> for ParameterMapping
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 ParameterMapping
impl PartialEq for ParameterMapping
Source§impl Serialize for ParameterMapping
impl Serialize for ParameterMapping
impl StructuralPartialEq for ParameterMapping
Auto Trait Implementations§
impl Freeze for ParameterMapping
impl RefUnwindSafe for ParameterMapping
impl Send for ParameterMapping
impl Sync for ParameterMapping
impl Unpin for ParameterMapping
impl UnwindSafe for ParameterMapping
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