reliq 0.3.0

A portable library of primitive-like constructs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::*;

pub trait Mode 
where
    Self: Sized,
    Self: Clone,
    Self: Copy {}

impl Mode for DefaultMode {}
impl Mode for RadMode {}
impl Mode for DegMode {}