remove modulus trait

This commit is contained in:
sinuio
2022-02-07 09:33:20 -08:00
parent 9af3882a0a
commit a78880e3c8

View File

@@ -1,9 +1,3 @@
mod boolean;
pub use boolean::Bool;
/// An element that has some modulus
pub trait HasModulus {
/// The modulus of the wire.
fn modulus(&self) -> u16;
}