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 Neg for Sign
impl PartialEq<Sign> for Sign
impl Debug for Sign
impl Copy for Sign
impl Eq for Sign
impl Clone for Sign
fn clone(&self) -> Sign
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl Mul<Sign> for Sign
type Output = Sign
The resulting type after applying the *
operator
fn mul(self, other: Sign) -> Sign
The method for the *
operator