pub trait IntoParigotNum {
    // Required method
    fn into_parigot(self) -> Term;
}

Required Methods§

source

fn into_parigot(self) -> Term

Performs the conversion.

Implementations on Foreign Types§

source§

impl<T, U> IntoParigotNum for (T, U)where T: IntoParigotNum, U: IntoParigotNum,

source§

impl<T, U> IntoParigotNum for Result<T, U>where T: IntoParigotNum, U: IntoParigotNum,

source§

impl<T> IntoParigotNum for Option<T>where T: IntoParigotNum,

source§

impl IntoParigotNum for usize

Implementors§