plutus_ledger_api::v1::value

Struct Value

Source
pub struct Value(pub BTreeMap<CurrencySymbol, BTreeMap<TokenName, BigInt>>);
Expand description

A value that can contain multiple asset classes

Tuple Fields§

§0: BTreeMap<CurrencySymbol, BTreeMap<TokenName, BigInt>>

Implementations§

Source§

impl Value

Source

pub fn new() -> Self

Source

pub fn ada_value(amount: &BigInt) -> Self

Create a Value containing only ada tokens, given the quantity in lovelace.

Source

pub fn token_value(cs: &CurrencySymbol, tn: &TokenName, amount: &BigInt) -> Self

Create a Value containing only the given quantity of the given token.

Source

pub fn get_token_amount(&self, cs: &CurrencySymbol, tn: &TokenName) -> BigInt

Lookup the quantity of the given token.

Source

pub fn get_ada_amount(&self) -> BigInt

Lookup the quantity of ada(unit: lovelace).

Source

pub fn insert_token( &self, cs: &CurrencySymbol, tn: &TokenName, a: &BigInt, ) -> Self

Insert a new token into the value, or replace the existing quantity.

Source

pub fn is_empty(&self) -> bool

Return true if the value don’t have any entries.

Source

pub fn normalize(self) -> Self

Remove all tokens whose quantity is zero.

Source

pub fn is_subset(&self, b: &Value) -> bool

Source

pub fn is_pure_ada(&self) -> bool

Source

pub fn map_amount<F>(self, f: F) -> Self

Apply a function to each token of the value, and use its result as the new amount.

Source

pub fn filter<F>(self, f: F) -> Self

Apply a predicate to tokens.

Source

pub fn filter_map_amount<F>(self, f: F) -> Self

Apply a function to each token of the value. If the result is None, the token entry will be removed.

Note that if the name-quantity map of any given currency symbols is empty, the currency entry will be removed from the top-level map entirely.

Source

pub fn flatten(&self) -> Vec<(&CurrencySymbol, &TokenName, &BigInt)>

Create a vector with each distinct value Warning: is the value is not normalized, the same asset class can appear twice

Source

pub fn unflatten(list: &[(CurrencySymbol, TokenName, BigInt)]) -> Self

Trait Implementations§

Source§

impl<'a, 'b> Add<&'a Value> for &'b Value

Source§

type Output = Value

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Value) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<&'a Value> for Value

Source§

type Output = Value

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Value) -> Self::Output

Performs the + operation. Read more
Source§

impl<'a> Add<Value> for &'a Value

Source§

type Output = Value

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Value) -> Self::Output

Performs the + operation. Read more
Source§

impl Add for Value

Source§

type Output = Value

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Value) -> Self::Output

Performs the + operation. Read more
Source§

impl Clone for Value

Source§

fn clone(&self) -> Value

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 Value

Source§

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

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

impl Default for Value

Source§

fn default() -> Value

Returns the “default value” for a type. Read more
Source§

impl Display for Value

Source§

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

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

impl FromCSL<Mint> for Value

Source§

fn from_csl(mint: &Mint) -> Self

Source§

impl FromCSL<MultiAsset> for Value

Source§

fn from_csl(value: &MultiAsset) -> Self

Source§

impl FromCSL<Value> for Value

Source§

fn from_csl(value: &Value) -> Self

Source§

impl FromStr for Value

Source§

type Err = ConversionError

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
Source§

impl Hash for Value

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl IsPlutusData for Value

Source§

impl Mul<&BigInt> for &Value

Source§

type Output = Value

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &BigInt) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&'a BigInt> for Value

Source§

type Output = Value

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &BigInt) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a, 'b> Mul<&'a Value> for &'b BigInt

Source§

type Output = Value

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Value) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&'a Value> for BigInt

Source§

type Output = Value

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Value) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&'a Value> for i16

Source§

type Output = Value

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Value) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&'a Value> for i32

Source§

type Output = Value

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Value) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&'a Value> for i64

Source§

type Output = Value

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Value) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&'a Value> for i8

Source§

type Output = Value

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Value) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&'a Value> for u16

Source§

type Output = Value

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Value) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&'a Value> for u32

Source§

type Output = Value

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Value) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&'a Value> for u64

Source§

type Output = Value

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Value) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<&'a Value> for u8

Source§

type Output = Value

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &Value) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<BigInt> for &'a Value

Source§

type Output = Value

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: BigInt) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<BigInt> for Value

Source§

type Output = Value

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: BigInt) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<Value> for &'a BigInt

Source§

type Output = Value

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Value) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Value> for BigInt

Source§

type Output = Value

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Value) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<i16> for &'a Value

Source§

type Output = Value

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i16) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<i32> for &'a Value

Source§

type Output = Value

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i32) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<i64> for &'a Value

Source§

type Output = Value

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i64) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<i8> for &'a Value

Source§

type Output = Value

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i8) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<u16> for &'a Value

Source§

type Output = Value

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u16) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<u32> for &'a Value

Source§

type Output = Value

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u32) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<u64> for &'a Value

Source§

type Output = Value

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u64) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a> Mul<u8> for &'a Value

Source§

type Output = Value

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: u8) -> Self::Output

Performs the * operation. Read more
Source§

impl Neg for &Value

Source§

type Output = Value

The resulting type after applying the - operator.
Source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
Source§

impl Neg for Value

Source§

type Output = Value

The resulting type after applying the - operator.
Source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
Source§

impl Ord for Value

Source§

fn cmp(&self, other: &Value) -> 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 Value

Source§

fn eq(&self, other: &Value) -> 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 Value

Source§

fn partial_cmp(&self, other: &Value) -> 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<'a, 'b> Sub<&'a Value> for &'b Value

Source§

type Output = Value

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &Value) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<&'a Value> for Value

Source§

type Output = Value

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &Value) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sub<Value> for &'a Value

Source§

type Output = Value

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Value) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub for Value

Source§

type Output = Value

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Value) -> Self::Output

Performs the - operation. Read more
Source§

impl<'a> Sum<&'a Value> for Value

Source§

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

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

impl Sum for Value

Source§

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

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

impl TryFromPLA<Value> for Value

Source§

impl Zero for Value

Source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
Source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
Source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
Source§

impl Eq for Value

Source§

impl StructuralPartialEq for Value

Auto Trait Implementations§

§

impl Freeze for Value

§

impl RefUnwindSafe for Value

§

impl Send for Value

§

impl Sync for Value

§

impl Unpin for Value

§

impl UnwindSafe for Value

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, dst: *mut u8)

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

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

Source§

fn __clone_box(&self, _: Private) -> *mut ()

§

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

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FromStr for T
where T: FromStr, <T as FromStr>::Err: Error + Send + Sync + 'static,

§

type Error = <T as FromStr>::Err

§

fn from_str(s: &str) -> Result<T, <T as FromStr>::Error>

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> ToPLA<U> for T
where U: FromCSL<T>,

Source§

fn to_pla(&self) -> U

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. 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.
Source§

impl<T, U> TryToCSL<U> for T
where U: TryFromPLA<T>,

Source§

impl<T, U> TryToPLA<U> for T
where U: TryFromCSL<T>,

§

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

§

fn vzip(self) -> V