Struct forest_actor::miner::PowerPair[][src]

pub struct PowerPair {
    pub raw: StoragePower,
    pub qa: StoragePower,
}

Fields

raw: StoragePowerqa: StoragePower

Implementations

impl PowerPair[src]

pub fn zero() -> Self[src]

pub fn is_zero(&self) -> bool[src]

Trait Implementations

impl Add<&'_ PowerPair> for &PowerPair[src]

type Output = PowerPair

The resulting type after applying the + operator.

impl AddAssign<&'_ PowerPair> for PowerPair[src]

impl Clone for PowerPair[src]

impl Debug for PowerPair[src]

impl Default for PowerPair[src]

impl<'de> Deserialize<'de> for PowerPair[src]

impl Eq for PowerPair[src]

impl Neg for PowerPair[src]

type Output = PowerPair

The resulting type after applying the - operator.

impl Neg for &PowerPair[src]

type Output = PowerPair

The resulting type after applying the - operator.

impl PartialEq<PowerPair> for PowerPair[src]

impl Serialize for PowerPair[src]

impl StructuralEq for PowerPair[src]

impl StructuralPartialEq for PowerPair[src]

impl Sub<&'_ PowerPair> for &PowerPair[src]

type Output = PowerPair

The resulting type after applying the - operator.

impl SubAssign<&'_ PowerPair> for PowerPair[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,