RestyleHeatMap

Enum RestyleHeatMap 

Source
pub enum RestyleHeatMap<X, Y, Z>
where X: Serialize + Clone, Y: Serialize + Clone, Z: Serialize + Clone,
{
Show 33 variants ModifyAutoColorScale { auto_color_scale: Option<Dim<bool>>, }, ModifyColorBar { color_bar: Option<Dim<ColorBar>>, }, ModifyColorScale { color_scale: Option<Dim<ColorScale>>, }, ModifyConnectGaps { connect_gaps: Option<Dim<bool>>, }, ModifyCustomData { custom_data: Option<Dim<NumOrStringCollection>>, }, ModifyHoverInfo { hover_info: Option<Dim<HoverInfo>>, }, ModifyHoverLabel { hover_label: Option<Dim<Label>>, }, ModifyHoverOnGaps { hover_on_gaps: Option<Dim<bool>>, }, ModifyHoverTemplate { hover_template: Option<Dim<Dim<String>>>, }, ModifyHoverText { hover_text: Option<Dim<Vec<String>>>, }, ModifyLegendGroup { legend_group: Option<Dim<String>>, }, ModifyLegendGroupTitle { legend_group_title: Option<Dim<LegendGroupTitle>>, }, ModifyName { name: Option<Dim<String>>, }, ModifyOpacity { opacity: Option<Dim<f64>>, }, ModifyReverseScale { reverse_scale: Option<Dim<bool>>, }, ModifyShowLegend { show_legend: Option<Dim<bool>>, }, ModifyShowScale { show_scale: Option<Dim<bool>>, }, ModifyText { text: Option<Dim<Vec<String>>>, }, ModifyTranspose { transpose: Option<Dim<bool>>, }, ModifyVisible { visible: Option<Dim<Visible>>, }, ModifyX { x: Option<Dim<Vec<X>>>, }, ModifyXAxis { x_axis: Option<Dim<String>>, }, ModifyXCalendar { x_calendar: Option<Dim<Calendar>>, }, ModifyY { y: Option<Dim<Vec<Y>>>, }, ModifyYAxis { y_axis: Option<Dim<String>>, }, ModifyYCalendar { y_calendar: Option<Dim<Calendar>>, }, ModifyZ { z: Option<Dim<Vec<Z>>>, }, ModifyZauto { zauto: Option<Dim<bool>>, }, ModifyZhoverFormat { zhover_format: Option<Dim<String>>, }, ModifyZmax { zmax: Option<Dim<f64>>, }, ModifyZmid { zmid: Option<Dim<f64>>, }, ModifyZmin { zmin: Option<Dim<f64>>, }, ModifyZsmooth { zsmooth: Option<Dim<Smoothing>>, },
}

Variants§

§

ModifyAutoColorScale

Fields

§auto_color_scale: Option<Dim<bool>>
§

ModifyColorBar

Fields

§color_bar: Option<Dim<ColorBar>>
§

ModifyColorScale

Fields

§color_scale: Option<Dim<ColorScale>>
§

ModifyConnectGaps

Fields

§connect_gaps: Option<Dim<bool>>
§

ModifyCustomData

Fields

§custom_data: Option<Dim<NumOrStringCollection>>
§

ModifyHoverInfo

Fields

§hover_info: Option<Dim<HoverInfo>>
§

ModifyHoverLabel

Fields

§hover_label: Option<Dim<Label>>
§

ModifyHoverOnGaps

Fields

§hover_on_gaps: Option<Dim<bool>>
§

ModifyHoverTemplate

Fields

§hover_template: Option<Dim<Dim<String>>>
§

ModifyHoverText

Fields

§hover_text: Option<Dim<Vec<String>>>
§

ModifyLegendGroup

Fields

§legend_group: Option<Dim<String>>
§

ModifyLegendGroupTitle

Fields

§legend_group_title: Option<Dim<LegendGroupTitle>>
§

ModifyName

Fields

§

ModifyOpacity

Fields

§opacity: Option<Dim<f64>>
§

ModifyReverseScale

Fields

§reverse_scale: Option<Dim<bool>>
§

ModifyShowLegend

Fields

§show_legend: Option<Dim<bool>>
§

ModifyShowScale

Fields

§show_scale: Option<Dim<bool>>
§

ModifyText

Fields

§

ModifyTranspose

Fields

§transpose: Option<Dim<bool>>
§

ModifyVisible

Fields

§visible: Option<Dim<Visible>>
§

ModifyX

Fields

§x: Option<Dim<Vec<X>>>
§

ModifyXAxis

Fields

§x_axis: Option<Dim<String>>
§

ModifyXCalendar

Fields

§x_calendar: Option<Dim<Calendar>>
§

ModifyY

Fields

§y: Option<Dim<Vec<Y>>>
§

ModifyYAxis

Fields

§y_axis: Option<Dim<String>>
§

ModifyYCalendar

Fields

§y_calendar: Option<Dim<Calendar>>
§

ModifyZ

Fields

§z: Option<Dim<Vec<Z>>>
§

ModifyZauto

Fields

§zauto: Option<Dim<bool>>
§

ModifyZhoverFormat

Fields

§zhover_format: Option<Dim<String>>
§

ModifyZmax

Fields

§zmax: Option<Dim<f64>>
§

ModifyZmid

Fields

§zmid: Option<Dim<f64>>
§

ModifyZmin

Fields

§zmin: Option<Dim<f64>>
§

ModifyZsmooth

Fields

Trait Implementations§

Source§

impl<X, Y, Z> Clone for RestyleHeatMap<X, Y, Z>
where X: Serialize + Clone + Clone, Y: Serialize + Clone + Clone, Z: Serialize + Clone + Clone,

Source§

fn clone(&self) -> RestyleHeatMap<X, Y, Z>

Returns a duplicate of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<X, Y, Z> Serialize for RestyleHeatMap<X, Y, Z>

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<X, Y, Z> Restyle for RestyleHeatMap<X, Y, Z>
where X: Serialize + Clone, Y: Serialize + Clone, Z: Serialize + Clone,

Auto Trait Implementations§

§

impl<X, Y, Z> Freeze for RestyleHeatMap<X, Y, Z>

§

impl<X, Y, Z> !RefUnwindSafe for RestyleHeatMap<X, Y, Z>

§

impl<X, Y, Z> Send for RestyleHeatMap<X, Y, Z>
where X: Send, Y: Send, Z: Send,

§

impl<X, Y, Z> Sync for RestyleHeatMap<X, Y, Z>
where X: Sync, Y: Sync, Z: Sync,

§

impl<X, Y, Z> Unpin for RestyleHeatMap<X, Y, Z>
where X: Unpin, Y: Unpin, Z: Unpin,

§

impl<X, Y, Z> !UnwindSafe for RestyleHeatMap<X, Y, Z>

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> CloneToUninit for T
where T: Clone,

§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Serialize for T
where T: Serialize + ?Sized,

Source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>

Source§

fn do_erased_serialize( &self, serializer: &mut dyn Serializer, ) -> Result<(), ErrorImpl>

§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.