Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
Configure in criterion_plot::traits - Rust
[go: Go Back, main page]

Trait Configure

Source
pub trait Configure<This> {
    type Properties;

    // Required method
    fn configure<F>(&mut self, this: This, function: F) -> &mut Self
       where F: FnOnce(&mut Self::Properties) -> &mut Self::Properties;
}
Expand description

Overloaded configure method

Required Associated Types§

Source

type Properties

The properties of what’s being configured

Required Methods§

Source

fn configure<F>(&mut self, this: This, function: F) -> &mut Self
where F: FnOnce(&mut Self::Properties) -> &mut Self::Properties,

Configure some set of properties

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§