Struct Zatoshis

Source
pub struct Zatoshis(/* private fields */);
Expand description

A type-safe representation of some nonnegative amount of Zcash.

A Zatoshis can only be constructed from an integer that is within the valid monetary range of {0..MAX_MONEY} (where MAX_MONEY = 21,000,000 × 10⁸ zatoshis).

Implementations§

Source§

impl Zatoshis

Source

pub const ZERO: Self

Returns the identity Zatoshis

Source

pub fn into_u64(self) -> u64

Returns this Zatoshis as a u64.

Source

pub fn from_u64(amount: u64) -> Result<Self, BalanceError>

Creates a Zatoshis from a u64.

Returns an error if the amount is outside the range {0..MAX_MONEY}.

Source

pub const fn const_from_u64(amount: u64) -> Self

Creates a constant Zatoshis from a u64.

Panics: if the amount is outside the range {0..MAX_MONEY}.

Source

pub fn from_nonnegative_i64(amount: i64) -> Result<Self, BalanceError>

Creates a Zatoshis from an i64.

Returns an error if the amount is outside the range {0..MAX_MONEY}.

Source

pub fn from_u64_le_bytes(bytes: [u8; 8]) -> Result<Self, BalanceError>

Reads an Zatoshis from an unsigned 64-bit little-endian integer.

Returns an error if the amount is outside the range {0..MAX_MONEY}.

Source

pub fn from_nonnegative_i64_le_bytes( bytes: [u8; 8], ) -> Result<Self, BalanceError>

Reads a Zatoshis from a signed integer represented as a two’s complement 64-bit little-endian value.

Returns an error if the amount is outside the range {0..MAX_MONEY}.

Source

pub fn to_i64_le_bytes(self) -> [u8; 8]

Returns this Zatoshis encoded as a signed two’s complement 64-bit little-endian value.

Source

pub fn is_zero(&self) -> bool

Returns whether or not this Zatoshis is the zero value.

Source

pub fn is_positive(&self) -> bool

Returns whether or not this Zatoshis is positive.

Source

pub fn div_with_remainder(&self, divisor: NonZeroU64) -> QuotRem<Zatoshis>

Divides this Zatoshis value by the given divisor and returns the quotient and remainder.

Trait Implementations§

Source§

impl Add<Zatoshis> for Option<Zatoshis>

Source§

type Output = Option<Zatoshis>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Zatoshis) -> Option<Zatoshis>

Performs the + operation. Read more
Source§

impl Add for Zatoshis

Source§

type Output = Option<Zatoshis>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Zatoshis) -> Option<Zatoshis>

Performs the + operation. Read more
Source§

impl Clone for Zatoshis

Source§

fn clone(&self) -> Zatoshis

Returns a copy of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for Zatoshis

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Div<NonZero<u64>> for Zatoshis

Source§

type Output = Zatoshis

The resulting type after applying the / operator.
Source§

fn div(self, rhs: NonZeroU64) -> Zatoshis

Performs the / operation. Read more
Source§

impl From<&Zatoshis> for ZatBalance

Source§

fn from(n: &Zatoshis) -> Self

Converts to this type from the input type.
Source§

impl From<Zatoshis> for ZatBalance

Source§

fn from(n: Zatoshis) -> Self

Converts to this type from the input type.
Source§

impl From<Zatoshis> for u64

Source§

fn from(n: Zatoshis) -> Self

Converts to this type from the input type.
Source§

impl Mul<u64> for Zatoshis

Source§

type Output = Option<Zatoshis>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u64) -> Option<Zatoshis>

Performs the * operation. Read more
Source§

impl Mul<usize> for Zatoshis

Source§

type Output = Option<Zatoshis>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: usize) -> Option<Zatoshis>

Performs the * operation. Read more
Source§

impl Ord for Zatoshis

Source§

fn cmp(&self, other: &Zatoshis) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for Zatoshis

Source§

fn eq(&self, other: &Zatoshis) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for Zatoshis

Source§

fn partial_cmp(&self, other: &Zatoshis) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Sub<Zatoshis> for Option<Zatoshis>

Source§

type Output = Option<Zatoshis>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Zatoshis) -> Option<Zatoshis>

Performs the - operation. Read more
Source§

impl Sub for Zatoshis

Source§

type Output = Option<Zatoshis>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Zatoshis) -> Option<Zatoshis>

Performs the - operation. Read more
Source§

impl<'a> Sum<&'a Zatoshis> for Option<Zatoshis>

Source§

fn sum<I: Iterator<Item = &'a Zatoshis>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl Sum<Zatoshis> for Option<Zatoshis>

Source§

fn sum<I: Iterator<Item = Zatoshis>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl TryFrom<ZatBalance> for Zatoshis

Source§

type Error = BalanceError

The type returned in the event of a conversion error.
Source§

fn try_from(value: ZatBalance) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<u64> for Zatoshis

Source§

type Error = BalanceError

The type returned in the event of a conversion error.
Source§

fn try_from(value: u64) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl Copy for Zatoshis

Source§

impl Eq for Zatoshis

Source§

impl StructuralPartialEq for Zatoshis

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V