Struct finite_fields::b2
[−]
[src]
pub struct b2(_);
A two-digit binary number.
Methods
impl b2
[src]
Trait Implementations
impl Clone for b2
[src]
fn clone(&self) -> b2
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 Copy for b2
[src]
impl PartialEq for b2
[src]
fn eq(&self, __arg_0: &b2) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &b2) -> bool
This method tests for !=
.
impl Display for b2
[src]
impl<'a> Index<usize> for b2
[src]
type Output = b1
The returned type after indexing
fn index<'b>(&'b self, index: usize) -> &'b b1
The method for the indexing (container[index]
) operation
impl IndexMut<usize> for b2
[src]
fn index_mut<'a>(&'a mut self, index: usize) -> &'a mut b1
The method for the mutable indexing (container[index]
) operation
impl Add for b2
[src]
Arithmetic addition with overflow error.
type Output = Result<Self, OverflowError>
The resulting type after applying the +
operator
fn add(self, other: b2) -> Result<b2, OverflowError>
The method for the +
operator
impl<'a> Add<b2> for &'a b2
[src]
type Output = Result<b2, OverflowError>
The resulting type after applying the +
operator
fn add(self, other: b2) -> Result<b2, OverflowError>
The method for the +
operator
impl<'a> Add<&'a b2> for &'a b2
[src]
type Output = Result<b2, OverflowError>
The resulting type after applying the +
operator
fn add(self, other: &b2) -> Result<b2, OverflowError>
The method for the +
operator
impl Sub for b2
[src]
Wrapping arithmetic subtraction with overflow error.
type Output = Result<b2, OverflowError>
The resulting type after applying the -
operator
fn sub(self, other: b2) -> Result<b2, OverflowError>
The method for the -
operator
impl<'a> Sub<b2> for &'a b2
[src]
type Output = Result<b2, OverflowError>
The resulting type after applying the -
operator
fn sub(self, other: b2) -> Result<b2, OverflowError>
The method for the -
operator
impl<'a> Sub<&'a b2> for &'a b2
[src]
type Output = Result<b2, OverflowError>
The resulting type after applying the -
operator
fn sub(self, other: &b2) -> Result<b2, OverflowError>
The method for the -
operator
impl Peano for b2
[src]
This implementation is done "in reverse" of the expected logical order; it
uses the Add
and Sub
impls instead of the converse.
fn successor(&self) -> Result<b2, OverflowError>
Produces the next integer value in the field of self (i.e., increment).
fn predecessor(&self) -> Result<b2, OverflowError>
Peano arithmetic function.
fn cmp(&self, other: &Self) -> Ordering
Total ordering function.
impl PartialOrd for b2
[src]
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool
1.0.0
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &Rhs) -> bool
1.0.0
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &Rhs) -> bool
1.0.0
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &Rhs) -> bool
1.0.0
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl BitXor for b2
[src]
type Output = Self
The resulting type after applying the ^
operator
fn bitxor(self, other: b2) -> Self
The method for the ^
operator
impl Shift for b2
[src]
fn shift_right(&self) -> Self
Shifts the bit vector once to the right, padding with zero on the left and discarding on the right. Read more
fn shift_left(&self) -> Self
Shifts the bit vector once to the left, padding with zero on the right and discarding on the left. Read more
impl Mul for b2
[src]
type Output = Result<b2, OverflowError>
The resulting type after applying the *
operator
fn mul(self, other: b2) -> Result<b2, OverflowError>
The method for the *
operator
impl<'a> Mul<b2> for &'a b2
[src]
type Output = Result<b2, OverflowError>
The resulting type after applying the *
operator
fn mul(self, other: b2) -> Result<b2, OverflowError>
The method for the *
operator
impl<'a> Mul<&'a b2> for &'a b2
[src]
type Output = Result<b2, OverflowError>
The resulting type after applying the *
operator
fn mul(self, other: &'a b2) -> Result<b2, OverflowError>
The method for the *
operator
impl<'a> Div<b2> for &'a b2
[src]
type Output = Result<b2, DivisionError>
The resulting type after applying the /
operator
fn div(self, other: b2) -> Result<b2, DivisionError>
The method for the /
operator
impl<'a> Div<&'a b2> for &'a b2
[src]
type Output = Result<b2, DivisionError>
The resulting type after applying the /
operator
fn div(self, other: &b2) -> Result<b2, DivisionError>
The method for the /
operator