pub struct ParameterMapping {
pub parameter_id: String,
pub card_id: i64,
pub target: ParameterTarget,
}
Expand description
Parameter mapping for dashboard cards
Fields§
§parameter_id: String
Parameter ID being mapped
card_id: i64
Card ID this mapping applies to
target: ParameterTarget
Target for the mapping
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