pub struct Assignments<Seal>(/* private fields */)
where
Seal: ExposedSeal;
Implementations§
Source§impl Assignments<BlindSeal<Txid>>
impl Assignments<BlindSeal<Txid>>
pub fn transmutate_seals(&self) -> Assignments<BlindSeal<TxPtr>>
Methods from Deref<Target = Confined<BTreeMap<u16, TypedAssigns<Seal>>, 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 keyed_values_mut(&'c mut self) -> <&'c mut C as IntoIterator>::IntoIter
pub fn keyed_values_mut(&'c mut self) -> <&'c mut C as IntoIterator>::IntoIter
Returns an iterator that allows modifying each value for each key.
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 pop(&mut self) -> Option<char>
pub fn pop(&mut self) -> Option<char>
Removes the last character from a string and returns it, or None
if
it is empty.
Sourcepub fn remove(&mut self, index: usize) -> Result<char, Error>
pub fn remove(&mut self, index: usize) -> Result<char, Error>
Removes a single character from the confined string, unless the string doesn’t shorten more than the confinement requirement. Errors otherwise.
Sourcepub fn pop(&mut self) -> Option<AsciiChar>
pub fn pop(&mut self) -> Option<AsciiChar>
Removes the last character from a string and returns it, or None
if
it is empty.
Sourcepub fn remove(&mut self, index: usize) -> Result<AsciiChar, Error>
pub fn remove(&mut self, index: usize) -> Result<AsciiChar, Error>
Removes a single character from the confined string, unless the string doesn’t shorten more than the confinement requirement. Errors otherwise.
Sourcepub fn pop(&mut self) -> Option<T>
pub fn pop(&mut self) -> Option<T>
Removes the last element from a vector and returns it, or None
if it
is empty.
Sourcepub fn remove(&mut self, index: usize) -> Result<T, Error>
pub fn remove(&mut self, index: usize) -> Result<T, Error>
Removes an element from the vector at a given index. Errors if the index exceeds the number of elements in the vector, of if the new vector length will be less than the confinement requirement. Returns the removed element otherwise.
Sourcepub fn iter(&self) -> Iter<'_, T>
pub fn iter(&self) -> Iter<'_, T>
Returns an iterator over the slice.
The iterator yields all items from start to end.
Sourcepub fn pop_front(&mut self) -> Option<T>
pub fn pop_front(&mut self) -> Option<T>
Removes the first element and returns it, or None
if the deque is
empty.
Sourcepub fn pop_back(&mut self) -> Option<T>
pub fn pop_back(&mut self) -> Option<T>
Removes the last element and returns it, or None
if the deque is
empty.
Sourcepub fn push_from(&mut self, elem: T) -> Result<(), Error>
pub fn push_from(&mut self, elem: T) -> Result<(), Error>
Prepends an element to the deque. Errors if the new collection length will not fit the confinement requirements.
Sourcepub fn push_back(&mut self, elem: T) -> Result<(), Error>
pub fn push_back(&mut self, elem: T) -> Result<(), Error>
Appends an element to the deque. Errors if the new collection length will not fit the confinement requirements.
Sourcepub fn remove(&mut self, index: usize) -> Result<T, Error>
pub fn remove(&mut self, index: usize) -> Result<T, Error>
Removes an element from the deque at a given index. Errors if the index exceeds the number of elements in the deque, of if the new deque length will be less than the confinement requirement. Returns the removed element otherwise.
Sourcepub fn remove(&mut self, elem: &T) -> Result<bool, Error>
Available on crate feature std
only.
pub fn remove(&mut self, elem: &T) -> Result<bool, Error>
std
only.Removes an element from the set. Errors if the index exceeds the number of elements in the set, of if the new collection length will be less than the confinement requirement. Returns if the element was present in the set.
Sourcepub fn take(&mut self, elem: &T) -> Result<Option<T>, Error>
Available on crate feature std
only.
pub fn take(&mut self, elem: &T) -> Result<Option<T>, Error>
std
only.Removes an element from the set. Errors if the index exceeds the number of elements in the set, of if the new collection length will be less than the confinement requirement. Returns the removed element otherwise.
Sourcepub fn remove(&mut self, elem: &T) -> Result<bool, Error>
pub fn remove(&mut self, elem: &T) -> Result<bool, Error>
Removes an element from the set. Errors if the index exceeds the number of elements in the set, of if the new collection length will be less than the confinement requirement. Returns if the element was present in the set.
Sourcepub fn take(&mut self, elem: &T) -> Result<Option<T>, Error>
pub fn take(&mut self, elem: &T) -> Result<Option<T>, Error>
Removes an element from the set. Errors if the index exceeds the number of elements in the set, of if the new collection length will be less than the confinement requirement. Returns the removed element otherwise.
Sourcepub fn remove(&mut self, key: &K) -> Result<Option<V>, Error>
Available on crate feature std
only.
pub fn remove(&mut self, key: &K) -> Result<Option<V>, Error>
std
only.Removes an element from the map. Errors if the index exceeds the number of elements in the map, of if the new collection length will be less than the confinement requirement. Returns the removed value otherwise.
Trait Implementations§
Source§impl<Seal> AsMut<<Assignments<Seal> as Wrapper>::Inner> for Assignments<Seal>where
Seal: ExposedSeal,
impl<Seal> AsMut<<Assignments<Seal> as Wrapper>::Inner> for Assignments<Seal>where
Seal: ExposedSeal,
Source§impl<Seal> AsRef<Confined<BTreeMap<u16, TypedAssigns<Seal>>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>> for Assignments<Seal>where
Seal: ExposedSeal,
impl<Seal> AsRef<Confined<BTreeMap<u16, TypedAssigns<Seal>>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>> for Assignments<Seal>where
Seal: ExposedSeal,
Source§impl<Seal> Borrow<Confined<BTreeMap<u16, TypedAssigns<Seal>>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>> for Assignments<Seal>where
Seal: ExposedSeal,
impl<Seal> Borrow<Confined<BTreeMap<u16, TypedAssigns<Seal>>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>> for Assignments<Seal>where
Seal: ExposedSeal,
Source§impl<Seal> BorrowMut<<Assignments<Seal> as Wrapper>::Inner> for Assignments<Seal>where
Seal: ExposedSeal,
impl<Seal> BorrowMut<<Assignments<Seal> as Wrapper>::Inner> for Assignments<Seal>where
Seal: ExposedSeal,
Source§fn borrow_mut(&mut self) -> &mut <Assignments<Seal> as Wrapper>::Inner
fn borrow_mut(&mut self) -> &mut <Assignments<Seal> as Wrapper>::Inner
Source§impl<Seal> Clone for Assignments<Seal>where
Seal: Clone + ExposedSeal,
impl<Seal> Clone for Assignments<Seal>where
Seal: Clone + ExposedSeal,
Source§fn clone(&self) -> Assignments<Seal>
fn clone(&self) -> Assignments<Seal>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<Seal> CommitEncode for Assignments<Seal>where
Seal: ExposedSeal,
impl<Seal> CommitEncode for Assignments<Seal>where
Seal: ExposedSeal,
Source§fn commit_encode(&self, e: &mut impl Write)
fn commit_encode(&self, e: &mut impl Write)
io::Write
writer instanceSource§impl<Seal> Debug for Assignments<Seal>where
Seal: Debug + ExposedSeal,
impl<Seal> Debug for Assignments<Seal>where
Seal: Debug + ExposedSeal,
Source§impl<Seal> Default for Assignments<Seal>where
Seal: ExposedSeal,
impl<Seal> Default for Assignments<Seal>where
Seal: ExposedSeal,
Source§fn default() -> Assignments<Seal>
fn default() -> Assignments<Seal>
Source§impl<Seal> Deref for Assignments<Seal>where
Seal: ExposedSeal,
impl<Seal> Deref for Assignments<Seal>where
Seal: ExposedSeal,
Source§impl<Seal> DerefMut for Assignments<Seal>where
Seal: ExposedSeal,
impl<Seal> DerefMut for Assignments<Seal>where
Seal: ExposedSeal,
Source§impl<'de, Seal> Deserialize<'de> for Assignments<Seal>
impl<'de, Seal> Deserialize<'de> for Assignments<Seal>
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Assignments<Seal>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Assignments<Seal>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Source§impl<'op> From<&'op Assignments<BlindSeal<TxPtr>>> for AssignmentsRef<'op>
impl<'op> From<&'op Assignments<BlindSeal<TxPtr>>> for AssignmentsRef<'op>
Source§fn from(v: &'op Assignments<BlindSeal<TxPtr>>) -> AssignmentsRef<'op>
fn from(v: &'op Assignments<BlindSeal<TxPtr>>) -> AssignmentsRef<'op>
Source§impl<'op> From<&'op Assignments<BlindSeal<Txid>>> for AssignmentsRef<'op>
impl<'op> From<&'op Assignments<BlindSeal<Txid>>> for AssignmentsRef<'op>
Source§fn from(v: &'op Assignments<BlindSeal<Txid>>) -> AssignmentsRef<'op>
fn from(v: &'op Assignments<BlindSeal<Txid>>) -> AssignmentsRef<'op>
Source§impl<Seal> From<Assignments<Seal>> for Confined<BTreeMap<u16, TypedAssigns<Seal>>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>where
Seal: ExposedSeal,
impl<Seal> From<Assignments<Seal>> for Confined<BTreeMap<u16, TypedAssigns<Seal>>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>where
Seal: ExposedSeal,
Source§fn from(
wrapped: Assignments<Seal>,
) -> Confined<BTreeMap<u16, TypedAssigns<Seal>>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>
fn from( wrapped: Assignments<Seal>, ) -> Confined<BTreeMap<u16, TypedAssigns<Seal>>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>
Source§impl<Seal> From<Confined<BTreeMap<u16, TypedAssigns<Seal>>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>> for Assignments<Seal>where
Seal: ExposedSeal,
impl<Seal> From<Confined<BTreeMap<u16, TypedAssigns<Seal>>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>> for Assignments<Seal>where
Seal: ExposedSeal,
Source§fn from(
v: Confined<BTreeMap<u16, TypedAssigns<Seal>>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>,
) -> Assignments<Seal>
fn from( v: Confined<BTreeMap<u16, TypedAssigns<Seal>>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>, ) -> Assignments<Seal>
Source§impl<Seal> Hash for Assignments<Seal>where
Seal: Hash + ExposedSeal,
impl<Seal> Hash for Assignments<Seal>where
Seal: Hash + ExposedSeal,
Source§impl<Seal: ExposedSeal> MergeReveal for Assignments<Seal>
impl<Seal: ExposedSeal> MergeReveal for Assignments<Seal>
fn merge_reveal(self, other: Self) -> Result<Self, MergeRevealError>
Source§impl<Seal> PartialEq for Assignments<Seal>where
Seal: PartialEq + ExposedSeal,
impl<Seal> PartialEq for Assignments<Seal>where
Seal: PartialEq + ExposedSeal,
Source§impl<Seal> Serialize for Assignments<Seal>
impl<Seal> Serialize for Assignments<Seal>
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<Seal> StrictDecode for Assignments<Seal>where
Seal: ExposedSeal,
impl<Seal> StrictDecode for Assignments<Seal>where
Seal: ExposedSeal,
fn strict_decode( reader: &mut impl TypedRead, ) -> Result<Assignments<Seal>, DecodeError>
fn strict_read(lim: usize, reader: impl Read) -> Result<Self, DecodeError>
Source§impl<Seal> StrictEncode for Assignments<Seal>where
Seal: ExposedSeal,
impl<Seal> StrictEncode for Assignments<Seal>where
Seal: ExposedSeal,
fn strict_encode<W>(&self, writer: W) -> Result<W, Error>where
W: TypedWrite,
fn strict_write(&self, lim: usize, writer: impl Write) -> Result<usize, Error>
Source§impl<Seal> StrictTuple for Assignments<Seal>where
Seal: ExposedSeal,
impl<Seal> StrictTuple for Assignments<Seal>where
Seal: ExposedSeal,
const FIELD_COUNT: u8 = 1u8
fn strict_check_fields()
fn strict_type_info() -> TypeInfo<Self>
Source§impl<Seal> StrictType for Assignments<Seal>where
Seal: ExposedSeal,
impl<Seal> StrictType for Assignments<Seal>where
Seal: ExposedSeal,
const STRICT_LIB_NAME: &'static str = LIB_NAME_RGB
fn strict_name() -> Option<TypeName>
Source§impl<Seal> Wrapper for Assignments<Seal>where
Seal: ExposedSeal,
impl<Seal> Wrapper for Assignments<Seal>where
Seal: ExposedSeal,
Source§type Inner = Confined<BTreeMap<u16, TypedAssigns<Seal>>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>
type Inner = Confined<BTreeMap<u16, TypedAssigns<Seal>>, amplify::::collection::confinement::TinyOrdMap::{constant#0}, amplify::::collection::confinement::TinyOrdMap::{constant#1}>
Source§fn from_inner(inner: <Assignments<Seal> as Wrapper>::Inner) -> Assignments<Seal>
fn from_inner(inner: <Assignments<Seal> as Wrapper>::Inner) -> Assignments<Seal>
Source§fn as_inner(&self) -> &<Assignments<Seal> as Wrapper>::Inner
fn as_inner(&self) -> &<Assignments<Seal> as Wrapper>::Inner
Source§fn into_inner(self) -> <Assignments<Seal> as Wrapper>::Inner
fn into_inner(self) -> <Assignments<Seal> as Wrapper>::Inner
Source§impl<Seal> WrapperMut for Assignments<Seal>where
Seal: ExposedSeal,
impl<Seal> WrapperMut for Assignments<Seal>where
Seal: ExposedSeal,
Source§fn as_inner_mut(&mut self) -> &mut <Assignments<Seal> as Wrapper>::Inner
fn as_inner_mut(&mut self) -> &mut <Assignments<Seal> as Wrapper>::Inner
impl<Seal> Eq for Assignments<Seal>where
Seal: Eq + ExposedSeal,
impl<Seal> StrictProduct for Assignments<Seal>where
Seal: ExposedSeal,
impl<Seal> StructuralPartialEq for Assignments<Seal>where
Seal: ExposedSeal,
Auto Trait Implementations§
impl<Seal> Freeze for Assignments<Seal>
impl<Seal> RefUnwindSafe for Assignments<Seal>where
Seal: RefUnwindSafe,
impl<Seal> Send for Assignments<Seal>where
Seal: Send,
impl<Seal> Sync for Assignments<Seal>where
Seal: Sync,
impl<Seal> Unpin for Assignments<Seal>
impl<Seal> UnwindSafe for Assignments<Seal>where
Seal: RefUnwindSafe,
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.