Trait ferrite_session::functional::nat::Nat[][src]

pub trait Nat: Send + Copy + 'static {
    const Value: Self;

    fn nat() -> Self;
}

Associated Constants

const Value: Self[src]

Loading content...

Required methods

fn nat() -> Self[src]

Loading content...

Implementors

impl Nat for Z[src]

const Value: Z[src]

fn nat() -> Z[src]

impl<N> Nat for S<N> where
    N: Nat
[src]

const Value: S<N>[src]

fn nat() -> S<N>[src]

Loading content...