Enum float::Sign [] [src]

pub enum Sign {
    Neg,
    Pos,
}

Variants

Neg
Pos

Trait Implementations

impl Display for Sign

fn fmt(&self, f: &mut Formatter) -> Result

impl Neg for Sign

type Output = Sign

fn neg(self) -> Sign

impl BitXor for Sign

type Output = Sign

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

Derived Implementations

impl Debug for Sign

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

impl PartialOrd for Sign

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

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

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

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

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

impl Ord for Sign

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

impl PartialEq for Sign

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

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

impl Eq for Sign

impl Clone for Sign

fn clone(&self) -> Sign

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

impl Copy for Sign