INNER CODE UNIT · Rust
default
bheisler/criterion.rs · plot/src/lib.rs:883
fn default(s: S) -> Self;
}
/// Error bar variant of Default
trait ErrorBarDefault<S> {
/// Creates `errorbar::Properties` with default configuration
fn default(s: S) -> Self;
}
/// Structs that can produce gnuplot code
trait Script {
/// Translates some configuration struct into gnuplot code
fn script(&self) -> String;
}
#[derive(Clone)]
struct Plot {
data: Matrix,