pub struct MarkerDynamicField {
pub key: &'static str,
pub label: &'static str,
pub format: MarkerFieldFormat,
pub searchable: Option<bool>,
}
Expand description
The field description of a marker field which can have a different value for each marker.
Fields§
§key: &'static str
The field key.
label: &'static str
The user-visible label of this field.
format: MarkerFieldFormat
The format of this field.
searchable: Option<bool>
Whether this field’s value should be matched against search terms.
Trait Implementations§
source§impl Clone for MarkerDynamicField
impl Clone for MarkerDynamicField
source§fn clone(&self) -> MarkerDynamicField
fn clone(&self) -> MarkerDynamicField
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 more