pub trait AccessPlotsModule: AccessPlotsModulePriv {
    // Provided method
    fn plots<'global, T: Target<'global>>(target: &T) -> Module<'global> { ... }
}
Expand description

This trait is, and can only be, implemented by Module. It adds the method Module::plots that provides access to the contents of the Plots package.

Provided Methods§

source

fn plots<'global, T: Target<'global>>(target: &T) -> Module<'global>

Returns the Plots module.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'scope> AccessPlotsModule for Module<'scope>