Enum pallet_nfts::pallet::Event
source · pub enum Event<T: Config<I>, I: 'static = ()> {
Show 38 variants
Created {
collection: T::CollectionId,
creator: T::AccountId,
owner: T::AccountId,
},
ForceCreated {
collection: T::CollectionId,
owner: T::AccountId,
},
Destroyed {
collection: T::CollectionId,
},
Issued {
collection: T::CollectionId,
item: T::ItemId,
owner: T::AccountId,
},
Transferred {
collection: T::CollectionId,
item: T::ItemId,
from: T::AccountId,
to: T::AccountId,
},
Burned {
collection: T::CollectionId,
item: T::ItemId,
owner: T::AccountId,
},
ItemTransferLocked {
collection: T::CollectionId,
item: T::ItemId,
},
ItemTransferUnlocked {
collection: T::CollectionId,
item: T::ItemId,
},
ItemPropertiesLocked {
collection: T::CollectionId,
item: T::ItemId,
lock_metadata: bool,
lock_attributes: bool,
},
CollectionLocked {
collection: T::CollectionId,
},
OwnerChanged {
collection: T::CollectionId,
new_owner: T::AccountId,
},
TeamChanged {
collection: T::CollectionId,
issuer: Option<T::AccountId>,
admin: Option<T::AccountId>,
freezer: Option<T::AccountId>,
},
TransferApproved {
collection: T::CollectionId,
item: T::ItemId,
owner: T::AccountId,
delegate: T::AccountId,
deadline: Option<BlockNumberFor<T, I>>,
},
ApprovalCancelled {
collection: T::CollectionId,
item: T::ItemId,
owner: T::AccountId,
delegate: T::AccountId,
},
AllApprovalsCancelled {
collection: T::CollectionId,
item: T::ItemId,
owner: T::AccountId,
},
CollectionConfigChanged {
collection: T::CollectionId,
},
CollectionMetadataSet {
collection: T::CollectionId,
data: BoundedVec<u8, T::StringLimit>,
},
CollectionMetadataCleared {
collection: T::CollectionId,
},
ItemMetadataSet {
collection: T::CollectionId,
item: T::ItemId,
data: BoundedVec<u8, T::StringLimit>,
},
ItemMetadataCleared {
collection: T::CollectionId,
item: T::ItemId,
},
Redeposited {
collection: T::CollectionId,
successful_items: Vec<T::ItemId>,
},
AttributeSet {
collection: T::CollectionId,
maybe_item: Option<T::ItemId>,
key: BoundedVec<u8, T::KeyLimit>,
value: BoundedVec<u8, T::ValueLimit>,
namespace: AttributeNamespace<T::AccountId>,
},
AttributeCleared {
collection: T::CollectionId,
maybe_item: Option<T::ItemId>,
key: BoundedVec<u8, T::KeyLimit>,
namespace: AttributeNamespace<T::AccountId>,
},
ItemAttributesApprovalAdded {
collection: T::CollectionId,
item: T::ItemId,
delegate: T::AccountId,
},
ItemAttributesApprovalRemoved {
collection: T::CollectionId,
item: T::ItemId,
delegate: T::AccountId,
},
OwnershipAcceptanceChanged {
who: T::AccountId,
maybe_collection: Option<T::CollectionId>,
},
CollectionMaxSupplySet {
collection: T::CollectionId,
max_supply: u32,
},
CollectionMintSettingsUpdated {
collection: T::CollectionId,
},
NextCollectionIdIncremented {
next_id: Option<T::CollectionId>,
},
ItemPriceSet {
collection: T::CollectionId,
item: T::ItemId,
price: ItemPrice<T, I>,
whitelisted_buyer: Option<T::AccountId>,
},
ItemPriceRemoved {
collection: T::CollectionId,
item: T::ItemId,
},
ItemBought {
collection: T::CollectionId,
item: T::ItemId,
price: ItemPrice<T, I>,
seller: T::AccountId,
buyer: T::AccountId,
},
TipSent {
collection: T::CollectionId,
item: T::ItemId,
sender: T::AccountId,
receiver: T::AccountId,
amount: DepositBalanceOf<T, I>,
},
SwapCreated {
offered_collection: T::CollectionId,
offered_item: T::ItemId,
desired_collection: T::CollectionId,
desired_item: Option<T::ItemId>,
price: Option<PriceWithDirection<ItemPrice<T, I>>>,
deadline: BlockNumberFor<T, I>,
},
SwapCancelled {
offered_collection: T::CollectionId,
offered_item: T::ItemId,
desired_collection: T::CollectionId,
desired_item: Option<T::ItemId>,
price: Option<PriceWithDirection<ItemPrice<T, I>>>,
deadline: BlockNumberFor<T, I>,
},
SwapClaimed {
sent_collection: T::CollectionId,
sent_item: T::ItemId,
sent_item_owner: T::AccountId,
received_collection: T::CollectionId,
received_item: T::ItemId,
received_item_owner: T::AccountId,
price: Option<PriceWithDirection<ItemPrice<T, I>>>,
deadline: BlockNumberFor<T, I>,
},
PreSignedAttributesSet {
collection: T::CollectionId,
item: T::ItemId,
namespace: AttributeNamespace<T::AccountId>,
},
PalletAttributeSet {
collection: T::CollectionId,
item: Option<T::ItemId>,
attribute: PalletAttributes<T::CollectionId>,
value: BoundedVec<u8, T::ValueLimit>,
},
// some variants omitted
}
Expand description
The Event
enum of this pallet
Variants§
Created
A collection
was created.
ForceCreated
A collection
was force-created.
Destroyed
A collection
was destroyed.
Fields
collection: T::CollectionId
Issued
An item
was issued.
Transferred
An item
was transferred.
Burned
An item
was destroyed.
ItemTransferLocked
An item
became non-transferable.
ItemTransferUnlocked
An item
became transferable.
ItemPropertiesLocked
item
metadata or attributes were locked.
CollectionLocked
Some collection
was locked.
Fields
collection: T::CollectionId
OwnerChanged
The owner changed.
TeamChanged
The management team changed.
Fields
collection: T::CollectionId
TransferApproved
An item
of a collection
has been approved by the owner
for transfer by
a delegate
.
Fields
collection: T::CollectionId
owner: T::AccountId
delegate: T::AccountId
deadline: Option<BlockNumberFor<T, I>>
ApprovalCancelled
An approval for a delegate
account to transfer the item
of an item
collection
was cancelled by its owner
.
AllApprovalsCancelled
All approvals of an item got cancelled.
CollectionConfigChanged
A collection
has had its config changed by the Force
origin.
Fields
collection: T::CollectionId
CollectionMetadataSet
New metadata has been set for a collection
.
CollectionMetadataCleared
Metadata has been cleared for a collection
.
Fields
collection: T::CollectionId
ItemMetadataSet
New metadata has been set for an item.
ItemMetadataCleared
Metadata has been cleared for an item.
Redeposited
The deposit for a set of item
s within a collection
has been updated.
AttributeSet
New attribute metadata has been set for a collection
or item
.
Fields
collection: T::CollectionId
value: BoundedVec<u8, T::ValueLimit>
namespace: AttributeNamespace<T::AccountId>
AttributeCleared
Attribute metadata has been cleared for a collection
or item
.
ItemAttributesApprovalAdded
A new approval to modify item attributes was added.
ItemAttributesApprovalRemoved
A new approval to modify item attributes was removed.
OwnershipAcceptanceChanged
Ownership acceptance has changed for an account.
CollectionMaxSupplySet
Max supply has been set for a collection.
CollectionMintSettingsUpdated
Mint settings for a collection had changed.
Fields
collection: T::CollectionId
NextCollectionIdIncremented
Event gets emitted when the NextCollectionId
gets incremented.
Fields
next_id: Option<T::CollectionId>
ItemPriceSet
The price was set for the item.
Fields
collection: T::CollectionId
ItemPriceRemoved
The price for the item was removed.
ItemBought
An item was bought.
TipSent
A tip was sent.
Fields
collection: T::CollectionId
sender: T::AccountId
receiver: T::AccountId
amount: DepositBalanceOf<T, I>
SwapCreated
An item
swap intent was created.
Fields
offered_collection: T::CollectionId
desired_collection: T::CollectionId
price: Option<PriceWithDirection<ItemPrice<T, I>>>
deadline: BlockNumberFor<T, I>
SwapCancelled
The swap was cancelled.
Fields
offered_collection: T::CollectionId
desired_collection: T::CollectionId
price: Option<PriceWithDirection<ItemPrice<T, I>>>
deadline: BlockNumberFor<T, I>
SwapClaimed
The swap has been claimed.
Fields
sent_collection: T::CollectionId
sent_item_owner: T::AccountId
received_collection: T::CollectionId
received_item_owner: T::AccountId
price: Option<PriceWithDirection<ItemPrice<T, I>>>
deadline: BlockNumberFor<T, I>
PreSignedAttributesSet
New attributes have been set for an item
of the collection
.
PalletAttributeSet
A new attribute in the Pallet
namespace was set for the collection
or an item
within that collection
.
Fields
collection: T::CollectionId
attribute: PalletAttributes<T::CollectionId>
value: BoundedVec<u8, T::ValueLimit>
Trait Implementations§
source§impl<T: Config<I>, I: 'static> Decode for Event<T, I>where
T::CollectionId: Decode,
T::AccountId: Decode,
T::ItemId: Decode,
Option<T::AccountId>: Decode,
Option<BlockNumberFor<T, I>>: Decode,
BoundedVec<u8, T::StringLimit>: Decode,
Vec<T::ItemId>: Decode,
Option<T::ItemId>: Decode,
BoundedVec<u8, T::KeyLimit>: Decode,
BoundedVec<u8, T::ValueLimit>: Decode,
AttributeNamespace<T::AccountId>: Decode,
Option<T::CollectionId>: Decode,
ItemPrice<T, I>: Decode,
DepositBalanceOf<T, I>: Decode,
Option<PriceWithDirection<ItemPrice<T, I>>>: Decode,
BlockNumberFor<T, I>: Decode,
PalletAttributes<T::CollectionId>: Decode,
impl<T: Config<I>, I: 'static> Decode for Event<T, I>where
T::CollectionId: Decode,
T::AccountId: Decode,
T::ItemId: Decode,
Option<T::AccountId>: Decode,
Option<BlockNumberFor<T, I>>: Decode,
BoundedVec<u8, T::StringLimit>: Decode,
Vec<T::ItemId>: Decode,
Option<T::ItemId>: Decode,
BoundedVec<u8, T::KeyLimit>: Decode,
BoundedVec<u8, T::ValueLimit>: Decode,
AttributeNamespace<T::AccountId>: Decode,
Option<T::CollectionId>: Decode,
ItemPrice<T, I>: Decode,
DepositBalanceOf<T, I>: Decode,
Option<PriceWithDirection<ItemPrice<T, I>>>: Decode,
BlockNumberFor<T, I>: Decode,
PalletAttributes<T::CollectionId>: Decode,
source§fn decode<__CodecInputEdqy: Input>(
__codec_input_edqy: &mut __CodecInputEdqy,
) -> Result<Self, Error>
fn decode<__CodecInputEdqy: Input>( __codec_input_edqy: &mut __CodecInputEdqy, ) -> Result<Self, Error>
§fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>,
) -> Result<DecodeFinished, Error>where
I: Input,
fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>,
) -> Result<DecodeFinished, Error>where
I: Input,
§fn skip<I>(input: &mut I) -> Result<(), Error>where
I: Input,
fn skip<I>(input: &mut I) -> Result<(), Error>where
I: Input,
§fn encoded_fixed_size() -> Option<usize>
fn encoded_fixed_size() -> Option<usize>
source§impl<T: Config<I>, I: 'static> Encode for Event<T, I>where
T::CollectionId: Encode,
T::AccountId: Encode,
T::ItemId: Encode,
Option<T::AccountId>: Encode,
Option<BlockNumberFor<T, I>>: Encode,
BoundedVec<u8, T::StringLimit>: Encode,
Vec<T::ItemId>: Encode,
Option<T::ItemId>: Encode,
BoundedVec<u8, T::KeyLimit>: Encode,
BoundedVec<u8, T::ValueLimit>: Encode,
AttributeNamespace<T::AccountId>: Encode,
Option<T::CollectionId>: Encode,
ItemPrice<T, I>: Encode,
DepositBalanceOf<T, I>: Encode,
Option<PriceWithDirection<ItemPrice<T, I>>>: Encode,
BlockNumberFor<T, I>: Encode,
PalletAttributes<T::CollectionId>: Encode,
impl<T: Config<I>, I: 'static> Encode for Event<T, I>where
T::CollectionId: Encode,
T::AccountId: Encode,
T::ItemId: Encode,
Option<T::AccountId>: Encode,
Option<BlockNumberFor<T, I>>: Encode,
BoundedVec<u8, T::StringLimit>: Encode,
Vec<T::ItemId>: Encode,
Option<T::ItemId>: Encode,
BoundedVec<u8, T::KeyLimit>: Encode,
BoundedVec<u8, T::ValueLimit>: Encode,
AttributeNamespace<T::AccountId>: Encode,
Option<T::CollectionId>: Encode,
ItemPrice<T, I>: Encode,
DepositBalanceOf<T, I>: Encode,
Option<PriceWithDirection<ItemPrice<T, I>>>: Encode,
BlockNumberFor<T, I>: Encode,
PalletAttributes<T::CollectionId>: Encode,
source§fn size_hint(&self) -> usize
fn size_hint(&self) -> usize
source§fn encode_to<__CodecOutputEdqy: Output + ?Sized>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy,
)
fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy, )
§fn using_encoded<R, F>(&self, f: F) -> R
fn using_encoded<R, F>(&self, f: F) -> R
§fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
source§impl<T: Config<I>, I: 'static> PartialEq for Event<T, I>
impl<T: Config<I>, I: 'static> PartialEq for Event<T, I>
source§impl<T, I> TypeInfo for Event<T, I>where
T::CollectionId: TypeInfo + 'static,
T::AccountId: TypeInfo + 'static,
T::ItemId: TypeInfo + 'static,
Option<T::AccountId>: TypeInfo + 'static,
Option<BlockNumberFor<T, I>>: TypeInfo + 'static,
BoundedVec<u8, T::StringLimit>: TypeInfo + 'static,
Vec<T::ItemId>: TypeInfo + 'static,
Option<T::ItemId>: TypeInfo + 'static,
BoundedVec<u8, T::KeyLimit>: TypeInfo + 'static,
BoundedVec<u8, T::ValueLimit>: TypeInfo + 'static,
AttributeNamespace<T::AccountId>: TypeInfo + 'static,
Option<T::CollectionId>: TypeInfo + 'static,
ItemPrice<T, I>: TypeInfo + 'static,
DepositBalanceOf<T, I>: TypeInfo + 'static,
Option<PriceWithDirection<ItemPrice<T, I>>>: TypeInfo + 'static,
BlockNumberFor<T, I>: TypeInfo + 'static,
PalletAttributes<T::CollectionId>: TypeInfo + 'static,
PhantomData<(T, I)>: TypeInfo + 'static,
T: Config<I> + 'static,
I: 'static,
impl<T, I> TypeInfo for Event<T, I>where
T::CollectionId: TypeInfo + 'static,
T::AccountId: TypeInfo + 'static,
T::ItemId: TypeInfo + 'static,
Option<T::AccountId>: TypeInfo + 'static,
Option<BlockNumberFor<T, I>>: TypeInfo + 'static,
BoundedVec<u8, T::StringLimit>: TypeInfo + 'static,
Vec<T::ItemId>: TypeInfo + 'static,
Option<T::ItemId>: TypeInfo + 'static,
BoundedVec<u8, T::KeyLimit>: TypeInfo + 'static,
BoundedVec<u8, T::ValueLimit>: TypeInfo + 'static,
AttributeNamespace<T::AccountId>: TypeInfo + 'static,
Option<T::CollectionId>: TypeInfo + 'static,
ItemPrice<T, I>: TypeInfo + 'static,
DepositBalanceOf<T, I>: TypeInfo + 'static,
Option<PriceWithDirection<ItemPrice<T, I>>>: TypeInfo + 'static,
BlockNumberFor<T, I>: TypeInfo + 'static,
PalletAttributes<T::CollectionId>: TypeInfo + 'static,
PhantomData<(T, I)>: TypeInfo + 'static,
T: Config<I> + 'static,
I: 'static,
impl<T: Config<I>, I: 'static> EncodeLike for Event<T, I>where
T::CollectionId: Encode,
T::AccountId: Encode,
T::ItemId: Encode,
Option<T::AccountId>: Encode,
Option<BlockNumberFor<T, I>>: Encode,
BoundedVec<u8, T::StringLimit>: Encode,
Vec<T::ItemId>: Encode,
Option<T::ItemId>: Encode,
BoundedVec<u8, T::KeyLimit>: Encode,
BoundedVec<u8, T::ValueLimit>: Encode,
AttributeNamespace<T::AccountId>: Encode,
Option<T::CollectionId>: Encode,
ItemPrice<T, I>: Encode,
DepositBalanceOf<T, I>: Encode,
Option<PriceWithDirection<ItemPrice<T, I>>>: Encode,
BlockNumberFor<T, I>: Encode,
PalletAttributes<T::CollectionId>: Encode,
impl<T: Config<I>, I: 'static> Eq for Event<T, I>
Auto Trait Implementations§
impl<T, I> Freeze for Event<T, I>
impl<T, I> RefUnwindSafe for Event<T, I>where
<T as Config<I>>::CollectionId: RefUnwindSafe,
<T as Config>::AccountId: RefUnwindSafe,
<T as Config<I>>::ItemId: RefUnwindSafe,
<<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: RefUnwindSafe,
<<T as Config<I>>::BlockNumberProvider as BlockNumberProvider>::BlockNumber: RefUnwindSafe,
<T as Config<I>>::StringLimit: RefUnwindSafe,
<T as Config<I>>::KeyLimit: RefUnwindSafe,
<T as Config<I>>::ValueLimit: RefUnwindSafe,
T: RefUnwindSafe,
I: RefUnwindSafe,
impl<T, I> Send for Event<T, I>where
<<T as Config<I>>::BlockNumberProvider as BlockNumberProvider>::BlockNumber: Send,
<T as Config<I>>::StringLimit: Send,
<T as Config<I>>::KeyLimit: Send,
<T as Config<I>>::ValueLimit: Send,
T: Send,
I: Send,
impl<T, I> Sync for Event<T, I>where
<<T as Config<I>>::BlockNumberProvider as BlockNumberProvider>::BlockNumber: Sync,
<T as Config<I>>::StringLimit: Sync,
<T as Config<I>>::KeyLimit: Sync,
<T as Config<I>>::ValueLimit: Sync,
T: Sync,
I: Sync,
impl<T, I> Unpin for Event<T, I>where
<T as Config<I>>::CollectionId: Unpin,
<T as Config>::AccountId: Unpin,
<T as Config<I>>::ItemId: Unpin,
<<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Unpin,
<<T as Config<I>>::BlockNumberProvider as BlockNumberProvider>::BlockNumber: Unpin,
<T as Config<I>>::StringLimit: Unpin,
<T as Config<I>>::KeyLimit: Unpin,
<T as Config<I>>::ValueLimit: Unpin,
T: Unpin,
I: Unpin,
impl<T, I> UnwindSafe for Event<T, I>where
<T as Config<I>>::CollectionId: UnwindSafe,
<T as Config>::AccountId: UnwindSafe,
<T as Config<I>>::ItemId: UnwindSafe,
<<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: UnwindSafe,
<<T as Config<I>>::BlockNumberProvider as BlockNumberProvider>::BlockNumber: UnwindSafe,
<T as Config<I>>::StringLimit: UnwindSafe,
<T as Config<I>>::KeyLimit: UnwindSafe,
<T as Config<I>>::ValueLimit: UnwindSafe,
T: UnwindSafe,
I: UnwindSafe,
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
§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
§fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
§fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)§impl<T> Conv for T
impl<T> Conv for T
§impl<T> DecodeAll for Twhere
T: Decode,
impl<T> DecodeAll for Twhere
T: Decode,
§fn decode_all(input: &mut &[u8]) -> Result<T, Error>
fn decode_all(input: &mut &[u8]) -> Result<T, Error>
Self
and consume all of the given input data. Read more§impl<T> DecodeLimit for Twhere
T: Decode,
impl<T> DecodeLimit for Twhere
T: Decode,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.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.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
§impl<T> Hashable for Twhere
T: Codec,
impl<T> Hashable for Twhere
T: Codec,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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§impl<Src, Dest> IntoTuple<Dest> for Srcwhere
Dest: FromTuple<Src>,
impl<Src, Dest> IntoTuple<Dest> for Srcwhere
Dest: FromTuple<Src>,
fn into_tuple(self) -> Dest
§impl<T> IsType<T> for T
impl<T> IsType<T> for T
§impl<T, Outer> IsWrappedBy<Outer> for T
impl<T, Outer> IsWrappedBy<Outer> for T
§impl<T> KeyedVec for Twhere
T: Codec,
impl<T> KeyedVec for Twhere
T: Codec,
§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self
, then passes self.as_ref()
into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self
, then passes self.as_mut()
into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
T
. Read more§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.§impl<T> TryConv for T
impl<T> TryConv for T
§impl<T, U> TryIntoKey<U> for Twhere
U: TryFromKey<T>,
impl<T, U> TryIntoKey<U> for Twhere
U: TryFromKey<T>,
type Error = <U as TryFromKey<T>>::Error
fn try_into_key(self) -> Result<U, <U as TryFromKey<T>>::Error>
§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
unchecked_from
.§impl<T, S> UniqueSaturatedInto<T> for S
impl<T, S> UniqueSaturatedInto<T> for S
§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
T
.