Skip to main content

Pooling

Trait Pooling 

Source
pub trait Pooling
where Self: Fn(&Array, &[i32]) -> Result<Array, Exception> + DynClone,
{ }
Expand description

Marker trait for pooling operations.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> Pooling for T
where T: Fn(&Array, &[i32]) -> Result<Array, Exception> + DynClone,