pub trait Scalar<T>: CanBeNAwhere
    T: PartialEq + Copy,{
    // Required methods
    fn inner(&self) -> T;
    fn new(val: T) -> Self;
}

Required Methods§

source

fn inner(&self) -> T

source

fn new(val: T) -> Self

Object Safety§

This trait is not object safe.

Implementors§