pub struct DimensionTarget {
pub target_type: String,
pub id: Vec<Value>,
}
Expand description
Dimension target for field filters
Fields§
§target_type: String
Type is always “dimension” for this variant
id: Vec<Value>
Dimension specification [type, field_id/name, options]
Trait Implementations§
Source§impl Clone for DimensionTarget
impl Clone for DimensionTarget
Source§fn clone(&self) -> DimensionTarget
fn clone(&self) -> DimensionTarget
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 DimensionTarget
impl Debug for DimensionTarget
Source§impl<'de> Deserialize<'de> for DimensionTarget
impl<'de> Deserialize<'de> for DimensionTarget
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 DimensionTarget
impl PartialEq for DimensionTarget
Source§impl Serialize for DimensionTarget
impl Serialize for DimensionTarget
impl StructuralPartialEq for DimensionTarget
Auto Trait Implementations§
impl Freeze for DimensionTarget
impl RefUnwindSafe for DimensionTarget
impl Send for DimensionTarget
impl Sync for DimensionTarget
impl Unpin for DimensionTarget
impl UnwindSafe for DimensionTarget
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