Enum pallet_assets::pallet::Call
source · pub enum Call<T: Config<I>, I: 'static = ()> {
Show 32 variants
create {
id: T::AssetIdParameter,
admin: <<T as Config>::Lookup as StaticLookup>::Source,
min_balance: T::Balance,
},
force_create {
id: T::AssetIdParameter,
owner: <<T as Config>::Lookup as StaticLookup>::Source,
is_sufficient: bool,
min_balance: T::Balance,
},
start_destroy {
id: T::AssetIdParameter,
},
destroy_accounts {
id: T::AssetIdParameter,
},
destroy_approvals {
id: T::AssetIdParameter,
},
finish_destroy {
id: T::AssetIdParameter,
},
mint {
id: T::AssetIdParameter,
beneficiary: <<T as Config>::Lookup as StaticLookup>::Source,
amount: T::Balance,
},
burn {
id: T::AssetIdParameter,
who: <<T as Config>::Lookup as StaticLookup>::Source,
amount: T::Balance,
},
transfer {
id: T::AssetIdParameter,
target: <<T as Config>::Lookup as StaticLookup>::Source,
amount: T::Balance,
},
transfer_keep_alive {
id: T::AssetIdParameter,
target: <<T as Config>::Lookup as StaticLookup>::Source,
amount: T::Balance,
},
force_transfer {
id: T::AssetIdParameter,
source: <<T as Config>::Lookup as StaticLookup>::Source,
dest: <<T as Config>::Lookup as StaticLookup>::Source,
amount: T::Balance,
},
freeze {
id: T::AssetIdParameter,
who: <<T as Config>::Lookup as StaticLookup>::Source,
},
thaw {
id: T::AssetIdParameter,
who: <<T as Config>::Lookup as StaticLookup>::Source,
},
freeze_asset {
id: T::AssetIdParameter,
},
thaw_asset {
id: T::AssetIdParameter,
},
transfer_ownership {
id: T::AssetIdParameter,
owner: <<T as Config>::Lookup as StaticLookup>::Source,
},
set_team {
id: T::AssetIdParameter,
issuer: <<T as Config>::Lookup as StaticLookup>::Source,
admin: <<T as Config>::Lookup as StaticLookup>::Source,
freezer: <<T as Config>::Lookup as StaticLookup>::Source,
},
set_metadata {
id: T::AssetIdParameter,
name: Vec<u8>,
symbol: Vec<u8>,
decimals: u8,
},
clear_metadata {
id: T::AssetIdParameter,
},
force_set_metadata {
id: T::AssetIdParameter,
name: Vec<u8>,
symbol: Vec<u8>,
decimals: u8,
is_frozen: bool,
},
force_clear_metadata {
id: T::AssetIdParameter,
},
force_asset_status {
id: T::AssetIdParameter,
owner: <<T as Config>::Lookup as StaticLookup>::Source,
issuer: <<T as Config>::Lookup as StaticLookup>::Source,
admin: <<T as Config>::Lookup as StaticLookup>::Source,
freezer: <<T as Config>::Lookup as StaticLookup>::Source,
min_balance: T::Balance,
is_sufficient: bool,
is_frozen: bool,
},
approve_transfer {
id: T::AssetIdParameter,
delegate: <<T as Config>::Lookup as StaticLookup>::Source,
amount: T::Balance,
},
cancel_approval {
id: T::AssetIdParameter,
delegate: <<T as Config>::Lookup as StaticLookup>::Source,
},
force_cancel_approval {
id: T::AssetIdParameter,
owner: <<T as Config>::Lookup as StaticLookup>::Source,
delegate: <<T as Config>::Lookup as StaticLookup>::Source,
},
transfer_approved {
id: T::AssetIdParameter,
owner: <<T as Config>::Lookup as StaticLookup>::Source,
destination: <<T as Config>::Lookup as StaticLookup>::Source,
amount: T::Balance,
},
touch {
id: T::AssetIdParameter,
},
refund {
id: T::AssetIdParameter,
allow_burn: bool,
},
set_min_balance {
id: T::AssetIdParameter,
min_balance: T::Balance,
},
touch_other {
id: T::AssetIdParameter,
who: <<T as Config>::Lookup as StaticLookup>::Source,
},
refund_other {
id: T::AssetIdParameter,
who: <<T as Config>::Lookup as StaticLookup>::Source,
},
block {
id: T::AssetIdParameter,
who: <<T as Config>::Lookup as StaticLookup>::Source,
},
// some variants omitted
}Expand description
Contains a variant per dispatchable extrinsic that this pallet has.
Variants§
create
See Pallet::create.
force_create
See Pallet::force_create.
start_destroy
Fields
id: T::AssetIdParameterdestroy_accounts
Fields
id: T::AssetIdParameterdestroy_approvals
Fields
id: T::AssetIdParameterfinish_destroy
Fields
id: T::AssetIdParametermint
See Pallet::mint.
burn
See Pallet::burn.
transfer
See Pallet::transfer.
transfer_keep_alive
force_transfer
Fields
id: T::AssetIdParametersource: <<T as Config>::Lookup as StaticLookup>::Sourcedest: <<T as Config>::Lookup as StaticLookup>::Sourcefreeze
See Pallet::freeze.
thaw
See Pallet::thaw.
freeze_asset
Fields
id: T::AssetIdParameterSee Pallet::freeze_asset.
thaw_asset
Fields
id: T::AssetIdParameterSee Pallet::thaw_asset.
transfer_ownership
set_team
Fields
id: T::AssetIdParameterissuer: <<T as Config>::Lookup as StaticLookup>::Sourceadmin: <<T as Config>::Lookup as StaticLookup>::Sourcefreezer: <<T as Config>::Lookup as StaticLookup>::SourceSee Pallet::set_team.
set_metadata
See Pallet::set_metadata.
clear_metadata
Fields
id: T::AssetIdParameterforce_set_metadata
force_clear_metadata
Fields
id: T::AssetIdParameterforce_asset_status
Fields
id: T::AssetIdParameterowner: <<T as Config>::Lookup as StaticLookup>::Sourceissuer: <<T as Config>::Lookup as StaticLookup>::Sourceadmin: <<T as Config>::Lookup as StaticLookup>::Sourcefreezer: <<T as Config>::Lookup as StaticLookup>::Sourceapprove_transfer
cancel_approval
force_cancel_approval
Fields
id: T::AssetIdParameterowner: <<T as Config>::Lookup as StaticLookup>::Sourcedelegate: <<T as Config>::Lookup as StaticLookup>::Sourcetransfer_approved
Fields
id: T::AssetIdParameterowner: <<T as Config>::Lookup as StaticLookup>::Sourcedestination: <<T as Config>::Lookup as StaticLookup>::Sourcetouch
Fields
id: T::AssetIdParameterSee Pallet::touch.
refund
See Pallet::refund.
set_min_balance
touch_other
See Pallet::touch_other.
refund_other
See Pallet::refund_other.
block
See Pallet::block.
Implementations§
source§impl<T: Config<I>, I: 'static> Call<T, I>
impl<T: Config<I>, I: 'static> Call<T, I>
sourcepub fn new_call_variant_create(
id: T::AssetIdParameter,
admin: <<T as Config>::Lookup as StaticLookup>::Source,
min_balance: T::Balance
) -> Self
pub fn new_call_variant_create( id: T::AssetIdParameter, admin: <<T as Config>::Lookup as StaticLookup>::Source, min_balance: T::Balance ) -> Self
Create a call with the variant create.
sourcepub fn new_call_variant_force_create(
id: T::AssetIdParameter,
owner: <<T as Config>::Lookup as StaticLookup>::Source,
is_sufficient: bool,
min_balance: T::Balance
) -> Self
pub fn new_call_variant_force_create( id: T::AssetIdParameter, owner: <<T as Config>::Lookup as StaticLookup>::Source, is_sufficient: bool, min_balance: T::Balance ) -> Self
Create a call with the variant force_create.
sourcepub fn new_call_variant_start_destroy(id: T::AssetIdParameter) -> Self
pub fn new_call_variant_start_destroy(id: T::AssetIdParameter) -> Self
Create a call with the variant start_destroy.
sourcepub fn new_call_variant_destroy_accounts(id: T::AssetIdParameter) -> Self
pub fn new_call_variant_destroy_accounts(id: T::AssetIdParameter) -> Self
Create a call with the variant destroy_accounts.
sourcepub fn new_call_variant_destroy_approvals(id: T::AssetIdParameter) -> Self
pub fn new_call_variant_destroy_approvals(id: T::AssetIdParameter) -> Self
Create a call with the variant destroy_approvals.
sourcepub fn new_call_variant_finish_destroy(id: T::AssetIdParameter) -> Self
pub fn new_call_variant_finish_destroy(id: T::AssetIdParameter) -> Self
Create a call with the variant finish_destroy.
sourcepub fn new_call_variant_mint(
id: T::AssetIdParameter,
beneficiary: <<T as Config>::Lookup as StaticLookup>::Source,
amount: T::Balance
) -> Self
pub fn new_call_variant_mint( id: T::AssetIdParameter, beneficiary: <<T as Config>::Lookup as StaticLookup>::Source, amount: T::Balance ) -> Self
Create a call with the variant mint.
sourcepub fn new_call_variant_burn(
id: T::AssetIdParameter,
who: <<T as Config>::Lookup as StaticLookup>::Source,
amount: T::Balance
) -> Self
pub fn new_call_variant_burn( id: T::AssetIdParameter, who: <<T as Config>::Lookup as StaticLookup>::Source, amount: T::Balance ) -> Self
Create a call with the variant burn.
sourcepub fn new_call_variant_transfer(
id: T::AssetIdParameter,
target: <<T as Config>::Lookup as StaticLookup>::Source,
amount: T::Balance
) -> Self
pub fn new_call_variant_transfer( id: T::AssetIdParameter, target: <<T as Config>::Lookup as StaticLookup>::Source, amount: T::Balance ) -> Self
Create a call with the variant transfer.
sourcepub fn new_call_variant_transfer_keep_alive(
id: T::AssetIdParameter,
target: <<T as Config>::Lookup as StaticLookup>::Source,
amount: T::Balance
) -> Self
pub fn new_call_variant_transfer_keep_alive( id: T::AssetIdParameter, target: <<T as Config>::Lookup as StaticLookup>::Source, amount: T::Balance ) -> Self
Create a call with the variant transfer_keep_alive.
sourcepub fn new_call_variant_force_transfer(
id: T::AssetIdParameter,
source: <<T as Config>::Lookup as StaticLookup>::Source,
dest: <<T as Config>::Lookup as StaticLookup>::Source,
amount: T::Balance
) -> Self
pub fn new_call_variant_force_transfer( id: T::AssetIdParameter, source: <<T as Config>::Lookup as StaticLookup>::Source, dest: <<T as Config>::Lookup as StaticLookup>::Source, amount: T::Balance ) -> Self
Create a call with the variant force_transfer.
sourcepub fn new_call_variant_freeze(
id: T::AssetIdParameter,
who: <<T as Config>::Lookup as StaticLookup>::Source
) -> Self
pub fn new_call_variant_freeze( id: T::AssetIdParameter, who: <<T as Config>::Lookup as StaticLookup>::Source ) -> Self
Create a call with the variant freeze.
sourcepub fn new_call_variant_thaw(
id: T::AssetIdParameter,
who: <<T as Config>::Lookup as StaticLookup>::Source
) -> Self
pub fn new_call_variant_thaw( id: T::AssetIdParameter, who: <<T as Config>::Lookup as StaticLookup>::Source ) -> Self
Create a call with the variant thaw.
sourcepub fn new_call_variant_freeze_asset(id: T::AssetIdParameter) -> Self
pub fn new_call_variant_freeze_asset(id: T::AssetIdParameter) -> Self
Create a call with the variant freeze_asset.
sourcepub fn new_call_variant_thaw_asset(id: T::AssetIdParameter) -> Self
pub fn new_call_variant_thaw_asset(id: T::AssetIdParameter) -> Self
Create a call with the variant thaw_asset.
sourcepub fn new_call_variant_transfer_ownership(
id: T::AssetIdParameter,
owner: <<T as Config>::Lookup as StaticLookup>::Source
) -> Self
pub fn new_call_variant_transfer_ownership( id: T::AssetIdParameter, owner: <<T as Config>::Lookup as StaticLookup>::Source ) -> Self
Create a call with the variant transfer_ownership.
sourcepub fn new_call_variant_set_team(
id: T::AssetIdParameter,
issuer: <<T as Config>::Lookup as StaticLookup>::Source,
admin: <<T as Config>::Lookup as StaticLookup>::Source,
freezer: <<T as Config>::Lookup as StaticLookup>::Source
) -> Self
pub fn new_call_variant_set_team( id: T::AssetIdParameter, issuer: <<T as Config>::Lookup as StaticLookup>::Source, admin: <<T as Config>::Lookup as StaticLookup>::Source, freezer: <<T as Config>::Lookup as StaticLookup>::Source ) -> Self
Create a call with the variant set_team.
sourcepub fn new_call_variant_set_metadata(
id: T::AssetIdParameter,
name: Vec<u8>,
symbol: Vec<u8>,
decimals: u8
) -> Self
pub fn new_call_variant_set_metadata( id: T::AssetIdParameter, name: Vec<u8>, symbol: Vec<u8>, decimals: u8 ) -> Self
Create a call with the variant set_metadata.
sourcepub fn new_call_variant_clear_metadata(id: T::AssetIdParameter) -> Self
pub fn new_call_variant_clear_metadata(id: T::AssetIdParameter) -> Self
Create a call with the variant clear_metadata.
sourcepub fn new_call_variant_force_set_metadata(
id: T::AssetIdParameter,
name: Vec<u8>,
symbol: Vec<u8>,
decimals: u8,
is_frozen: bool
) -> Self
pub fn new_call_variant_force_set_metadata( id: T::AssetIdParameter, name: Vec<u8>, symbol: Vec<u8>, decimals: u8, is_frozen: bool ) -> Self
Create a call with the variant force_set_metadata.
sourcepub fn new_call_variant_force_clear_metadata(id: T::AssetIdParameter) -> Self
pub fn new_call_variant_force_clear_metadata(id: T::AssetIdParameter) -> Self
Create a call with the variant force_clear_metadata.
sourcepub fn new_call_variant_force_asset_status(
id: T::AssetIdParameter,
owner: <<T as Config>::Lookup as StaticLookup>::Source,
issuer: <<T as Config>::Lookup as StaticLookup>::Source,
admin: <<T as Config>::Lookup as StaticLookup>::Source,
freezer: <<T as Config>::Lookup as StaticLookup>::Source,
min_balance: T::Balance,
is_sufficient: bool,
is_frozen: bool
) -> Self
pub fn new_call_variant_force_asset_status( id: T::AssetIdParameter, owner: <<T as Config>::Lookup as StaticLookup>::Source, issuer: <<T as Config>::Lookup as StaticLookup>::Source, admin: <<T as Config>::Lookup as StaticLookup>::Source, freezer: <<T as Config>::Lookup as StaticLookup>::Source, min_balance: T::Balance, is_sufficient: bool, is_frozen: bool ) -> Self
Create a call with the variant force_asset_status.
sourcepub fn new_call_variant_approve_transfer(
id: T::AssetIdParameter,
delegate: <<T as Config>::Lookup as StaticLookup>::Source,
amount: T::Balance
) -> Self
pub fn new_call_variant_approve_transfer( id: T::AssetIdParameter, delegate: <<T as Config>::Lookup as StaticLookup>::Source, amount: T::Balance ) -> Self
Create a call with the variant approve_transfer.
sourcepub fn new_call_variant_cancel_approval(
id: T::AssetIdParameter,
delegate: <<T as Config>::Lookup as StaticLookup>::Source
) -> Self
pub fn new_call_variant_cancel_approval( id: T::AssetIdParameter, delegate: <<T as Config>::Lookup as StaticLookup>::Source ) -> Self
Create a call with the variant cancel_approval.
sourcepub fn new_call_variant_force_cancel_approval(
id: T::AssetIdParameter,
owner: <<T as Config>::Lookup as StaticLookup>::Source,
delegate: <<T as Config>::Lookup as StaticLookup>::Source
) -> Self
pub fn new_call_variant_force_cancel_approval( id: T::AssetIdParameter, owner: <<T as Config>::Lookup as StaticLookup>::Source, delegate: <<T as Config>::Lookup as StaticLookup>::Source ) -> Self
Create a call with the variant force_cancel_approval.
sourcepub fn new_call_variant_transfer_approved(
id: T::AssetIdParameter,
owner: <<T as Config>::Lookup as StaticLookup>::Source,
destination: <<T as Config>::Lookup as StaticLookup>::Source,
amount: T::Balance
) -> Self
pub fn new_call_variant_transfer_approved( id: T::AssetIdParameter, owner: <<T as Config>::Lookup as StaticLookup>::Source, destination: <<T as Config>::Lookup as StaticLookup>::Source, amount: T::Balance ) -> Self
Create a call with the variant transfer_approved.
sourcepub fn new_call_variant_touch(id: T::AssetIdParameter) -> Self
pub fn new_call_variant_touch(id: T::AssetIdParameter) -> Self
Create a call with the variant touch.
sourcepub fn new_call_variant_refund(
id: T::AssetIdParameter,
allow_burn: bool
) -> Self
pub fn new_call_variant_refund( id: T::AssetIdParameter, allow_burn: bool ) -> Self
Create a call with the variant refund.
sourcepub fn new_call_variant_set_min_balance(
id: T::AssetIdParameter,
min_balance: T::Balance
) -> Self
pub fn new_call_variant_set_min_balance( id: T::AssetIdParameter, min_balance: T::Balance ) -> Self
Create a call with the variant set_min_balance.
sourcepub fn new_call_variant_touch_other(
id: T::AssetIdParameter,
who: <<T as Config>::Lookup as StaticLookup>::Source
) -> Self
pub fn new_call_variant_touch_other( id: T::AssetIdParameter, who: <<T as Config>::Lookup as StaticLookup>::Source ) -> Self
Create a call with the variant touch_other.
sourcepub fn new_call_variant_refund_other(
id: T::AssetIdParameter,
who: <<T as Config>::Lookup as StaticLookup>::Source
) -> Self
pub fn new_call_variant_refund_other( id: T::AssetIdParameter, who: <<T as Config>::Lookup as StaticLookup>::Source ) -> Self
Create a call with the variant refund_other.
sourcepub fn new_call_variant_block(
id: T::AssetIdParameter,
who: <<T as Config>::Lookup as StaticLookup>::Source
) -> Self
pub fn new_call_variant_block( id: T::AssetIdParameter, who: <<T as Config>::Lookup as StaticLookup>::Source ) -> Self
Create a call with the variant block.
Trait Implementations§
source§impl<T: Config<I>, I: 'static> Decode for Call<T, I>
impl<T: Config<I>, I: 'static> Decode for Call<T, I>
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>
source§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,
source§impl<T: Config<I>, I: 'static> Encode for Call<T, I>
impl<T: Config<I>, I: 'static> Encode for Call<T, I>
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 )
source§fn using_encoded<R, F>(&self, f: F) -> Rwhere
F: FnOnce(&[u8]) -> R,
fn using_encoded<R, F>(&self, f: F) -> Rwhere F: FnOnce(&[u8]) -> R,
source§fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
source§impl<T: Config<I>, I: 'static> GetCallIndex for Call<T, I>
impl<T: Config<I>, I: 'static> GetCallIndex for Call<T, I>
source§fn get_call_index(&self) -> u8
fn get_call_index(&self) -> u8
source§fn get_call_indices() -> &'static [u8] ⓘ
fn get_call_indices() -> &'static [u8] ⓘ
GetCallName.source§impl<T: Config<I>, I: 'static> GetCallName for Call<T, I>
impl<T: Config<I>, I: 'static> GetCallName for Call<T, I>
source§fn get_call_name(&self) -> &'static str
fn get_call_name(&self) -> &'static str
source§fn get_call_names() -> &'static [&'static str]
fn get_call_names() -> &'static [&'static str]
GetCallIndex.source§impl<T: Config<I>, I: 'static> GetDispatchInfo for Call<T, I>
impl<T: Config<I>, I: 'static> GetDispatchInfo for Call<T, I>
source§fn get_dispatch_info(&self) -> DispatchInfo
fn get_dispatch_info(&self) -> DispatchInfo
DispatchInfo, containing relevant information of this dispatch. Read moresource§impl<T: Config<I>, I: 'static> PartialEq for Call<T, I>
impl<T: Config<I>, I: 'static> PartialEq for Call<T, I>
source§impl<T, I> TypeInfo for Call<T, I>where
PhantomData<(T, I)>: TypeInfo + 'static,
T::AssetIdParameter: TypeInfo + 'static,
<<T as Config>::Lookup as StaticLookup>::Source: TypeInfo + 'static,
T::Balance: TypeInfo + 'static + HasCompact,
T: Config<I> + 'static,
I: 'static,
impl<T, I> TypeInfo for Call<T, I>where PhantomData<(T, I)>: TypeInfo + 'static, T::AssetIdParameter: TypeInfo + 'static, <<T as Config>::Lookup as StaticLookup>::Source: TypeInfo + 'static, T::Balance: TypeInfo + 'static + HasCompact, T: Config<I> + 'static, I: 'static,
source§impl<T: Config<I>, I: 'static> UnfilteredDispatchable for Call<T, I>
impl<T: Config<I>, I: 'static> UnfilteredDispatchable for Call<T, I>
§type RuntimeOrigin = <T as Config>::RuntimeOrigin
type RuntimeOrigin = <T as Config>::RuntimeOrigin
frame_system::Config::RuntimeOrigin).source§fn dispatch_bypass_filter(
self,
origin: Self::RuntimeOrigin
) -> DispatchResultWithPostInfo
fn dispatch_bypass_filter( self, origin: Self::RuntimeOrigin ) -> DispatchResultWithPostInfo
impl<T: Config<I>, I: 'static> EncodeLike for Call<T, I>
impl<T: Config<I>, I: 'static> Eq for Call<T, I>
Auto Trait Implementations§
impl<T, I> RefUnwindSafe for Call<T, I>where I: RefUnwindSafe, T: RefUnwindSafe, <T as Config<I>>::AssetIdParameter: RefUnwindSafe, <T as Config<I>>::Balance: RefUnwindSafe, <<T as Config>::Lookup as StaticLookup>::Source: RefUnwindSafe,
impl<T, I> Send for Call<T, I>where I: Send, T: Send, <T as Config<I>>::AssetIdParameter: Send, <<T as Config>::Lookup as StaticLookup>::Source: Send,
impl<T, I> Sync for Call<T, I>where I: Sync, T: Sync, <T as Config<I>>::AssetIdParameter: Sync, <<T as Config>::Lookup as StaticLookup>::Source: Sync,
impl<T, I> Unpin for Call<T, I>where I: Unpin, T: Unpin, <T as Config<I>>::AssetIdParameter: Unpin, <T as Config<I>>::Balance: Unpin, <<T as Config>::Lookup as StaticLookup>::Source: Unpin,
impl<T, I> UnwindSafe for Call<T, I>where I: UnwindSafe, T: UnwindSafe, <T as Config<I>>::AssetIdParameter: UnwindSafe, <T as Config<I>>::Balance: UnwindSafe, <<T as Config>::Lookup as StaticLookup>::Source: 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
source§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
source§impl<T> DecodeLimit for Twhere
T: Decode,
impl<T> DecodeLimit for Twhere T: Decode,
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
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 Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§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, Outer> IsWrappedBy<Outer> for Twhere
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
impl<T, Outer> IsWrappedBy<Outer> for Twhere Outer: AsRef<T> + AsMut<T> + From<T>, T: From<Outer>,
§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 moresource§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
unchecked_from.§impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere T: Bounded, S: TryInto<T>,
§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
T.