Struct cardano_serialization_lib::Mint
source · [−]pub struct Mint(_);
Implementations
sourceimpl Mint
impl Mint
pub fn from_bytes(bytes: Vec<u8>) -> Result<Mint, DeserializeError>
sourceimpl Mint
impl Mint
pub fn new() -> Self
pub fn new_from_entry(key: &PolicyID, value: &MintAssets) -> Self
pub fn len(&self) -> usize
pub fn insert(
&mut self,
key: &PolicyID,
value: &MintAssets
) -> Option<MintAssets>
pub fn get(&self, key: &PolicyID) -> Option<MintAssets>
pub fn keys(&self) -> PolicyIDs
sourcepub fn as_positive_multiasset(&self) -> MultiAsset
pub fn as_positive_multiasset(&self) -> MultiAsset
Returns the multiasset where only positive (minting) entries are present
sourcepub fn as_negative_multiasset(&self) -> MultiAsset
pub fn as_negative_multiasset(&self) -> MultiAsset
Returns the multiasset where only negative (burning) entries are present
Trait Implementations
sourceimpl Deserialize for Mint
impl Deserialize for Mint
fn deserialize<R: BufRead + Seek>(
raw: &mut Deserializer<R>
) -> Result<Self, DeserializeError>
sourceimpl Ord for Mint
impl Ord for Mint
sourceimpl PartialOrd<Mint> for Mint
impl PartialOrd<Mint> for Mint
sourcefn partial_cmp(&self, other: &Mint) -> Option<Ordering>
fn partial_cmp(&self, other: &Mint) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl Serialize for Mint
impl Serialize for Mint
fn serialize<'se, W: Write>(
&self,
serializer: &'se mut Serializer<W>
) -> Result<&'se mut Serializer<W>>
impl Eq for Mint
impl StructuralEq for Mint
impl StructuralPartialEq for Mint
Auto Trait Implementations
impl RefUnwindSafe for Mint
impl Send for Mint
impl Sync for Mint
impl Unpin for Mint
impl UnwindSafe for Mint
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more