Trait PlotArg

Source
pub trait PlotArg {
    // Required method
    fn as_plot(&self) -> Plot;
}

Required Methods§

Source

fn as_plot(&self) -> Plot

Implementations on Foreign Types§

Source§

impl PlotArg for (Polynomial, &str)

Source§

fn as_plot(&self) -> Plot

Source§

impl PlotArg for (Polynomial, XEnd)

Source§

fn as_plot(&self) -> Plot

Source§

impl PlotArg for (Polynomial, XEnd, &str)

Source§

fn as_plot(&self) -> Plot

Source§

impl PlotArg for ()

Source§

fn as_plot(&self) -> Plot

Source§

impl<F: Copy + Fn(f64) -> f64> PlotArg for (F, &str)

Source§

fn as_plot(&self) -> Plot

Source§

impl<F: Copy + Fn(f64) -> f64> PlotArg for (F, &str, XEnd)

Source§

fn as_plot(&self) -> Plot

Source§

impl<F: Copy + Fn(f64) -> f64> PlotArg for (F, usize, &str)

Source§

fn as_plot(&self) -> Plot

Source§

impl<F: Copy + Fn(f64) -> f64> PlotArg for (F, XEnd, &str)

Source§

fn as_plot(&self) -> Plot

Source§

impl<F: Fn(f64) -> f64> PlotArg for (F, usize)

Source§

fn as_plot(&self) -> Plot

Source§

impl<F: Fn(f64) -> f64> PlotArg for (F, XEnd)

Source§

fn as_plot(&self) -> Plot

Source§

impl<T: ToF64<Output = f64>> PlotArg for &[T]

Source§

fn as_plot(&self) -> Plot

Source§

impl<T: ToF64<Output = f64>> PlotArg for (&[T], &[T])

Source§

fn as_plot(&self) -> Plot

Source§

impl<T: ToF64<Output = f64>> PlotArg for (&[T], &[T], &str)

Source§

fn as_plot(&self) -> Plot

Source§

impl<T: ToF64<Output = f64>> PlotArg for (&[T], &str)

Source§

fn as_plot(&self) -> Plot

Source§

impl<T: ToF64<Output = f64>> PlotArg for (&Vec<T>, &Vec<T>)

Source§

fn as_plot(&self) -> Plot

Source§

impl<T: ToF64<Output = f64>> PlotArg for (Vec<T>, &str)

Source§

fn as_plot(&self) -> Plot

Source§

impl<T: ToF64<Output = f64>> PlotArg for (Vec<T>, Vec<T>)

Source§

fn as_plot(&self) -> Plot

Source§

impl<T: ToF64<Output = f64>> PlotArg for (Vec<T>, Vec<T>, &str)

Source§

fn as_plot(&self) -> Plot

Source§

impl<T: ToF64<Output = f64>> PlotArg for Vec<T>

Source§

fn as_plot(&self) -> Plot

Source§

impl<T: ToF64<Output = f64>, const N: usize> PlotArg for &[T; N]

Source§

fn as_plot(&self) -> Plot

Source§

impl<T: ToF64<Output = f64>, const N: usize> PlotArg for (&[T; N], &[T; N])

Source§

fn as_plot(&self) -> Plot

Source§

impl<T: ToF64<Output = f64>, const N: usize> PlotArg for (&[T; N], &[T; N], &str)

Source§

fn as_plot(&self) -> Plot

Source§

impl<T: ToF64<Output = f64>, const N: usize> PlotArg for (&[T; N], &str)

Source§

fn as_plot(&self) -> Plot

Source§

impl<T: ToF64<Output = f64>, const N: usize> PlotArg for ([T; N], &str)

Source§

fn as_plot(&self) -> Plot

Source§

impl<T: ToF64<Output = f64>, const N: usize> PlotArg for ([T; N], [T; N])

Source§

fn as_plot(&self) -> Plot

Source§

impl<T: ToF64<Output = f64>, const N: usize> PlotArg for ([T; N], [T; N], &str)

Source§

fn as_plot(&self) -> Plot

Source§

impl<T: ToF64<Output = f64>, const N: usize> PlotArg for [T; N]

Source§

fn as_plot(&self) -> Plot

Implementors§