pub trait IntoBinaryNum {
    // Required method
    fn into_binary(self) -> Term;
}

Required Methods§

source

fn into_binary(self) -> Term

Performs the conversion.

Implementations on Foreign Types§

source§

impl IntoBinaryNum for usize

source§

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

source§

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

source§

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

Implementors§