pub struct GlobalState(/* private fields */);
Implementations§
Source§impl GlobalState
impl GlobalState
pub fn add_state( &mut self, ty: GlobalStateType, state: RevealedData, ) -> Result<(), Error>
pub fn extend_state( &mut self, ty: GlobalStateType, iter: impl IntoIterator<Item = RevealedData>, ) -> Result<(), Error>
Methods from Deref<Target = Confined<BTreeMap<GlobalStateType, GlobalValues>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>>§
Sourcepub fn iter_mut(&'c mut self) -> <&'c mut C as IntoIterator>::IntoIter
pub fn iter_mut(&'c mut self) -> <&'c mut C as IntoIterator>::IntoIter
Returns an iterator that allows modifying each value.
The iterator yields all items from start to end.
Sourcepub fn values_mut(
&mut self,
) -> impl Iterator<Item = &mut <C as KeyedCollection>::Value>
pub fn values_mut( &mut self, ) -> impl Iterator<Item = &mut <C as KeyedCollection>::Value>
Returns an iterator that allows modifying each value for each key.
Sourcepub fn keyed_values_mut(
&mut self,
) -> impl Iterator<Item = (&<C as KeyedCollection>::Key, &mut <C as KeyedCollection>::Value)>
pub fn keyed_values_mut( &mut self, ) -> impl Iterator<Item = (&<C as KeyedCollection>::Key, &mut <C as KeyedCollection>::Value)>
Returns an iterator that allows modifying each value for each key.
Sourcepub fn as_inner(&self) -> &C
👎Deprecated since 4.7.0: use as_unconfined method
pub fn as_inner(&self) -> &C
Returns inner collection type
Sourcepub fn as_unconfined(&self) -> &C
pub fn as_unconfined(&self) -> &C
Returns reference to the inner collection type.
Sourcepub fn to_inner(&self) -> Cwhere
C: Clone,
👎Deprecated since 4.7.0: use to_unconfined method
pub fn to_inner(&self) -> Cwhere
C: Clone,
Clones inner collection type and returns it
Sourcepub fn to_unconfined(&self) -> Cwhere
C: Clone,
pub fn to_unconfined(&self) -> Cwhere
C: Clone,
Clones inner collection and returns an unconfined version of it.
Sourcepub fn push(&mut self, elem: <C as Collection>::Item) -> Result<(), Error>
pub fn push(&mut self, elem: <C as Collection>::Item) -> Result<(), Error>
Attempts to add a single element to the confined collection. Fails if the number of elements in the collection already maximal.
Sourcepub fn extend<T>(&mut self, iter: T) -> Result<(), Error>
pub fn extend<T>(&mut self, iter: T) -> Result<(), Error>
Attempts to add all elements from an iterator to the confined collection. Fails if the number of elements in the collection already maximal.
Sourcepub fn len_u8(&self) -> u8
pub fn len_u8(&self) -> u8
Returns number of elements in the confined collection as u8
. The
confinement guarantees that the collection length can’t exceed
u8::MAX
.
Sourcepub fn len_u16(&self) -> u16
pub fn len_u16(&self) -> u16
Returns number of elements in the confined collection as u16
. The
confinement guarantees that the collection length can’t exceed
u16::MAX
.
Sourcepub fn len_u24(&self) -> u24
pub fn len_u24(&self) -> u24
Returns number of elements in the confined collection as u24
. The
confinement guarantees that the collection length can’t exceed
u24::MAX
.
Sourcepub fn len_u32(&self) -> u32
pub fn len_u32(&self) -> u32
Returns number of elements in the confined collection as u32
. The
confinement guarantees that the collection length can’t exceed
u32::MAX
.
Sourcepub fn get_mut(
&mut self,
key: &<C as KeyedCollection>::Key,
) -> Option<&mut <C as KeyedCollection>::Value>
pub fn get_mut( &mut self, key: &<C as KeyedCollection>::Key, ) -> Option<&mut <C as KeyedCollection>::Value>
Gets mutable reference to an element of the collection.
Sourcepub fn insert(
&mut self,
key: <C as KeyedCollection>::Key,
value: <C as KeyedCollection>::Value,
) -> Result<Option<<C as KeyedCollection>::Value>, Error>
pub fn insert( &mut self, key: <C as KeyedCollection>::Key, value: <C as KeyedCollection>::Value, ) -> Result<Option<<C as KeyedCollection>::Value>, Error>
Inserts a new value into the confined collection under a given key. Fails if the collection already contains maximum number of elements allowed by the confinement.
Sourcepub fn entry(
&mut self,
key: <C as KeyedCollection>::Key,
) -> Result<<C as KeyedCollection>::Entry<'_>, Error>
pub fn entry( &mut self, key: <C as KeyedCollection>::Key, ) -> Result<<C as KeyedCollection>::Entry<'_>, Error>
Gets the given key’s corresponding entry in the map for in-place manipulation. Errors if the collection entry is vacant and the collection has already reached maximal size of its confinement.
Trait Implementations§
Source§impl AsMut<<GlobalState as Wrapper>::Inner> for GlobalState
impl AsMut<<GlobalState as Wrapper>::Inner> for GlobalState
Source§impl AsRef<Confined<BTreeMap<GlobalStateType, GlobalValues>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>> for GlobalState
impl AsRef<Confined<BTreeMap<GlobalStateType, GlobalValues>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>> for GlobalState
Source§fn as_ref(
&self,
) -> &Confined<BTreeMap<GlobalStateType, GlobalValues>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>
fn as_ref( &self, ) -> &Confined<BTreeMap<GlobalStateType, GlobalValues>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>
Source§impl Borrow<Confined<BTreeMap<GlobalStateType, GlobalValues>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>> for GlobalState
impl Borrow<Confined<BTreeMap<GlobalStateType, GlobalValues>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>> for GlobalState
Source§fn borrow(
&self,
) -> &Confined<BTreeMap<GlobalStateType, GlobalValues>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>
fn borrow( &self, ) -> &Confined<BTreeMap<GlobalStateType, GlobalValues>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>
Source§impl BorrowMut<<GlobalState as Wrapper>::Inner> for GlobalState
impl BorrowMut<<GlobalState as Wrapper>::Inner> for GlobalState
Source§fn borrow_mut(&mut self) -> &mut <GlobalState as Wrapper>::Inner
fn borrow_mut(&mut self) -> &mut <GlobalState as Wrapper>::Inner
Source§impl Clone for GlobalState
impl Clone for GlobalState
Source§fn clone(&self) -> GlobalState
fn clone(&self) -> GlobalState
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for GlobalState
impl Debug for GlobalState
Source§impl Default for GlobalState
impl Default for GlobalState
Source§fn default() -> GlobalState
fn default() -> GlobalState
Source§impl Deref for GlobalState
impl Deref for GlobalState
Source§type Target = Confined<BTreeMap<GlobalStateType, GlobalValues>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>
type Target = Confined<BTreeMap<GlobalStateType, GlobalValues>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>
Source§impl DerefMut for GlobalState
impl DerefMut for GlobalState
Source§impl<'de> Deserialize<'de> for GlobalState
impl<'de> Deserialize<'de> for GlobalState
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<GlobalState, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<GlobalState, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Source§impl From<Confined<BTreeMap<GlobalStateType, GlobalValues>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>> for GlobalState
impl From<Confined<BTreeMap<GlobalStateType, GlobalValues>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>> for GlobalState
Source§fn from(
v: Confined<BTreeMap<GlobalStateType, GlobalValues>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>,
) -> GlobalState
fn from( v: Confined<BTreeMap<GlobalStateType, GlobalValues>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>, ) -> GlobalState
Source§impl From<GlobalState> for Confined<BTreeMap<GlobalStateType, GlobalValues>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>
impl From<GlobalState> for Confined<BTreeMap<GlobalStateType, GlobalValues>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>
Source§fn from(
wrapped: GlobalState,
) -> Confined<BTreeMap<GlobalStateType, GlobalValues>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>
fn from( wrapped: GlobalState, ) -> Confined<BTreeMap<GlobalStateType, GlobalValues>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>
Source§impl Hash for GlobalState
impl Hash for GlobalState
Source§impl<'a> IntoIterator for &'a GlobalState
impl<'a> IntoIterator for &'a GlobalState
Source§type Item = (&'a GlobalStateType, &'a GlobalValues)
type Item = (&'a GlobalStateType, &'a GlobalValues)
Source§type IntoIter = Iter<'a, GlobalStateType, GlobalValues>
type IntoIter = Iter<'a, GlobalStateType, GlobalValues>
Source§fn into_iter(self) -> <&'a GlobalState as IntoIterator>::IntoIter
fn into_iter(self) -> <&'a GlobalState as IntoIterator>::IntoIter
Source§impl MerkleLeaves for GlobalState
impl MerkleLeaves for GlobalState
type Leaf = GlobalCommitment
type LeafIter<'tmp> = IntoIter<GlobalCommitment>
fn merkle_leaves(&self) -> <GlobalState as MerkleLeaves>::LeafIter<'_>
Source§impl PartialEq for GlobalState
impl PartialEq for GlobalState
Source§impl Serialize for GlobalState
impl Serialize for GlobalState
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Source§impl StrictDecode for GlobalState
impl StrictDecode for GlobalState
fn strict_decode( reader: &mut impl TypedRead, ) -> Result<GlobalState, DecodeError>
fn strict_read(reader: impl ReadRaw) -> Result<Self, DecodeError>
Source§impl StrictEncode for GlobalState
impl StrictEncode for GlobalState
fn strict_encode<W>(&self, writer: W) -> Result<W, Error>where
W: TypedWrite,
fn strict_write(&self, writer: impl WriteRaw) -> Result<(), Error>
Source§impl StrictTuple for GlobalState
impl StrictTuple for GlobalState
const FIELD_COUNT: u8 = 1u8
fn strict_check_fields()
fn strict_type_info() -> TypeInfo<Self>
Source§impl StrictType for GlobalState
impl StrictType for GlobalState
const STRICT_LIB_NAME: &'static str = LIB_NAME_RGB_COMMIT
fn strict_name() -> Option<TypeName>
Source§impl Wrapper for GlobalState
impl Wrapper for GlobalState
Source§type Inner = Confined<BTreeMap<GlobalStateType, GlobalValues>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>
type Inner = Confined<BTreeMap<GlobalStateType, GlobalValues>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>
Source§fn from_inner(inner: <GlobalState as Wrapper>::Inner) -> GlobalState
fn from_inner(inner: <GlobalState as Wrapper>::Inner) -> GlobalState
Source§fn as_inner(&self) -> &<GlobalState as Wrapper>::Inner
fn as_inner(&self) -> &<GlobalState as Wrapper>::Inner
Source§fn into_inner(self) -> <GlobalState as Wrapper>::Inner
fn into_inner(self) -> <GlobalState as Wrapper>::Inner
Source§impl WrapperMut for GlobalState
impl WrapperMut for GlobalState
Source§fn as_inner_mut(&mut self) -> &mut <GlobalState as Wrapper>::Inner
fn as_inner_mut(&mut self) -> &mut <GlobalState as Wrapper>::Inner
impl Eq for GlobalState
impl StrictProduct for GlobalState
impl StructuralPartialEq for GlobalState
Auto Trait Implementations§
impl Freeze for GlobalState
impl RefUnwindSafe for GlobalState
impl Send for GlobalState
impl Sync for GlobalState
impl Unpin for GlobalState
impl UnwindSafe for GlobalState
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.