Trait relearn::spaces::ElementInto[][src]

pub trait ElementInto<T>: Space {
    fn elem_into(&self, element: Self::Element) -> T;
}
Expand description

Convert elements of the space into values of type T.

Required methods

Convert an element into a value of type T.

Implementors