pub trait TypedScalar<T> {
    fn new(s: T) -> Self
    where
        Self: Sized
;
fn unwrap(self) -> T; }

Required methods

Implementors