pub struct DataViewUpdate {
pub allow_no_index: Option<bool>,
pub field_formats: Option<Map<String, Value>>,
pub fields: Option<Map<String, Value>>,
pub name: Option<String>,
pub runtime_field_map: Option<Map<String, Value>>,
pub source_filters: Option<Vec<Value>>,
pub time_field_name: Option<String>,
pub title: Option<String>,
pub view_type: Option<String>,
pub type_meta: Option<Map<String, Value>>,
}Expand description
The documented partial-update fields. None omits a field from the body.
Fields§
§allow_no_index: Option<bool>§field_formats: Option<Map<String, Value>>§fields: Option<Map<String, Value>>§name: Option<String>§runtime_field_map: Option<Map<String, Value>>§source_filters: Option<Vec<Value>>§time_field_name: Option<String>§title: Option<String>§view_type: Option<String>§type_meta: Option<Map<String, Value>>Trait Implementations§
Source§impl Clone for DataViewUpdate
impl Clone for DataViewUpdate
Source§fn clone(&self) -> DataViewUpdate
fn clone(&self) -> DataViewUpdate
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DataViewUpdate
impl Debug for DataViewUpdate
Source§impl Default for DataViewUpdate
impl Default for DataViewUpdate
Source§fn default() -> DataViewUpdate
fn default() -> DataViewUpdate
Returns the “default value” for a type. Read more
Source§impl PartialEq for DataViewUpdate
impl PartialEq for DataViewUpdate
Source§impl Serialize for DataViewUpdate
impl Serialize for DataViewUpdate
impl StructuralPartialEq for DataViewUpdate
Auto Trait Implementations§
impl Freeze for DataViewUpdate
impl RefUnwindSafe for DataViewUpdate
impl Send for DataViewUpdate
impl Sync for DataViewUpdate
impl Unpin for DataViewUpdate
impl UnsafeUnpin for DataViewUpdate
impl UnwindSafe for DataViewUpdate
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