pub trait ToSigned {
    type Type: Num + Signed;
    fn to_signed(&self) -> Self::Type;
}

Associated Types

Required methods

Implementations on Foreign Types

Implementors