[][src]Struct plotly::surface::Surface

pub struct Surface<X, Y, Z> where
    X: Serialize,
    Y: Serialize,
    Z: Num + Serialize
{ /* fields omitted */ }

Methods

impl<X, Y, Z> Surface<X, Y, Z> where
    X: Serialize,
    Y: Serialize,
    Z: Num + Serialize
[src]

pub fn new(z: Vec<Vec<Z>>) -> Box<Surface<X, Y, Z>>[src]

pub fn x(self, x: Vec<X>) -> Box<Surface<X, Y, Z>>[src]

pub fn y(self, y: Vec<Y>) -> Box<Surface<X, Y, Z>>[src]

pub fn name(self, name: &str) -> Box<Surface<X, Y, Z>>[src]

pub fn visible(self, visible: bool) -> Box<Surface<X, Y, Z>>[src]

pub fn show_legend(self, show_legend: bool) -> Box<Surface<X, Y, Z>>[src]

pub fn legend_group(self, legend_group: &str) -> Box<Surface<X, Y, Z>>[src]

pub fn opacity(self, opacity: f64) -> Box<Surface<X, Y, Z>>[src]

pub fn surface_color<C: Color>(
    self,
    surface_color: Vec<C>
) -> Box<Surface<X, Y, Z>>
[src]

pub fn text(self, text: &str) -> Box<Surface<X, Y, Z>>[src]

pub fn text_array<S: AsRef<str>>(self, text: Vec<S>) -> Box<Surface<X, Y, Z>>[src]

pub fn hover_text(self, hover_text: &str) -> Box<Surface<X, Y, Z>>[src]

pub fn hover_text_array<S: AsRef<str>>(
    self,
    hover_text: Vec<S>
) -> Box<Surface<X, Y, Z>>
[src]

pub fn hover_info(self, hover_info: HoverInfo) -> Box<Surface<X, Y, Z>>[src]

pub fn hover_template(self, hover_template: &str) -> Box<Surface<X, Y, Z>>[src]

pub fn hover_template_array<S: AsRef<str>>(
    self,
    hover_template: Vec<S>
) -> Box<Surface<X, Y, Z>>
[src]

pub fn color_bar(self, color_bar: ColorBar) -> Box<Surface<X, Y, Z>>[src]

pub fn auto_color_scale(self, auto_color_scale: bool) -> Box<Surface<X, Y, Z>>[src]

pub fn color_scale(self, color_scale: ColorScale) -> Box<Surface<X, Y, Z>>[src]

pub fn show_scale(self, show_scale: bool) -> Box<Surface<X, Y, Z>>[src]

pub fn reverse_scale(self, reverse_scale: bool) -> Box<Surface<X, Y, Z>>[src]

pub fn cauto(self, cauto: bool) -> Box<Surface<X, Y, Z>>[src]

pub fn cmin(self, cmin: f64) -> Box<Surface<X, Y, Z>>[src]

pub fn cmax(self, cmax: f64) -> Box<Surface<X, Y, Z>>[src]

pub fn cmid(self, cmid: f64) -> Box<Surface<X, Y, Z>>[src]

pub fn connect_gaps(self, connect_gaps: bool) -> Box<Surface<X, Y, Z>>[src]

pub fn contours(self, contours: SurfaceContours) -> Box<Surface<X, Y, Z>>[src]

pub fn hide_surface(self, hide_surface: bool) -> Box<Surface<X, Y, Z>>[src]

pub fn hover_label(self, hover_label: Label) -> Box<Surface<X, Y, Z>>[src]

pub fn lighting(self, lighting: Lighting) -> Box<Surface<X, Y, Z>>[src]

pub fn light_position(self, light_position: Position) -> Box<Surface<X, Y, Z>>[src]

pub fn x_calendar(self, x_calendar: Calendar) -> Box<Surface<X, Y, Z>>[src]

pub fn y_calendar(self, y_calendar: Calendar) -> Box<Surface<X, Y, Z>>[src]

pub fn z_calendar(self, z_calendar: Calendar) -> Box<Surface<X, Y, Z>>[src]

Trait Implementations

impl<X: Debug, Y: Debug, Z: Debug> Debug for Surface<X, Y, Z> where
    X: Serialize,
    Y: Serialize,
    Z: Num + Serialize
[src]

impl<X, Y, Z> Serialize for Surface<X, Y, Z> where
    X: Serialize,
    Y: Serialize,
    Z: Num + Serialize,
    X: Serialize,
    Y: Serialize,
    Z: Serialize
[src]

impl<X, Y, Z> Trace for Surface<X, Y, Z> where
    X: Serialize,
    Y: Serialize,
    Z: Num + Serialize
[src]

Auto Trait Implementations

impl<X, Y, Z> RefUnwindSafe for Surface<X, Y, Z> where
    X: RefUnwindSafe,
    Y: RefUnwindSafe,
    Z: RefUnwindSafe

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

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

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

impl<X, Y, Z> UnwindSafe for Surface<X, Y, Z> where
    X: UnwindSafe,
    Y: UnwindSafe,
    Z: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,