pub trait DatumTypeExt {
    // Required methods
    fn scalar_fact(&self) -> TypedFact;
    fn fact<S>(&self, shape: S) -> TypedFact
       where S: Into<ShapeFact>;
}

Required Methods§

fn scalar_fact(&self) -> TypedFact

fn fact<S>(&self, shape: S) -> TypedFactwhere S: Into<ShapeFact>,

Implementors§