Enum num::bigint::Sign [] [src]

pub enum Sign {
    Minus,
    NoSign,
    Plus,
}

A Sign is a BigInt's composing element.

Variants

Minus
NoSign
Plus

Trait Implementations

impl Mul<Sign> for Sign

type Output = Sign

fn mul(self, other: Sign) -> Sign

impl Neg for Sign

type Output = Sign

fn neg(self) -> Sign

Negate Sign value.

Derived Implementations

impl Hash for Sign

fn hash<__H>(&self, __arg_0: &mut __H) where __H: Hasher

impl Encodable for Sign

fn encode<__S>(&self, __arg_0: &mut __S) -> Result<(), __S::Error> where __S: Encoder

impl Decodable for Sign

fn decode<__D>(__arg_0: &mut __D) -> Result<Sign, __D::Error> where __D: Decoder

impl PartialEq<Sign> for Sign

fn eq(&self, __arg_0: &Sign) -> bool

impl PartialOrd<Sign> for Sign

fn partial_cmp(&self, __arg_0: &Sign) -> Option<Ordering>

impl Eq for Sign

impl Ord for Sign

fn cmp(&self, __arg_0: &Sign) -> Ordering

impl Copy for Sign

impl Clone for Sign

fn clone(&self) -> Sign

1.0.0fn clone_from(&mut self, source: &Self)

impl Debug for Sign

fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>