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::AssetIdParameter
destroy_accounts
Fields
id: T::AssetIdParameter
destroy_approvals
Fields
id: T::AssetIdParameter
finish_destroy
Fields
id: T::AssetIdParameter
mint
See Pallet::mint
.
burn
See Pallet::burn
.
transfer
See Pallet::transfer
.
transfer_keep_alive
force_transfer
Fields
id: T::AssetIdParameter
source: <<T as Config>::Lookup as StaticLookup>::Source
dest: <<T as Config>::Lookup as StaticLookup>::Source
freeze
See Pallet::freeze
.
thaw
See Pallet::thaw
.
freeze_asset
Fields
id: T::AssetIdParameter
See Pallet::freeze_asset
.
thaw_asset
Fields
id: T::AssetIdParameter
See Pallet::thaw_asset
.
transfer_ownership
set_team
Fields
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
See Pallet::set_team
.
set_metadata
See Pallet::set_metadata
.
clear_metadata
Fields
id: T::AssetIdParameter
force_set_metadata
force_clear_metadata
Fields
id: T::AssetIdParameter
force_asset_status
Fields
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
approve_transfer
cancel_approval
force_cancel_approval
Fields
id: T::AssetIdParameter
owner: <<T as Config>::Lookup as StaticLookup>::Source
delegate: <<T as Config>::Lookup as StaticLookup>::Source
transfer_approved
Fields
id: T::AssetIdParameter
owner: <<T as Config>::Lookup as StaticLookup>::Source
destination: <<T as Config>::Lookup as StaticLookup>::Source
touch
Fields
id: T::AssetIdParameter
See 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>
§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 Call<T, I>
impl<T: Config<I>, I: 'static> Encode for Call<T, I>
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) -> Rwhere
F: FnOnce(&[u8]) -> R,
fn using_encoded<R, F>(&self, f: F) -> Rwhere F: FnOnce(&[u8]) -> R,
§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<Call<T, I>> for Call<T, I>
impl<T: Config<I>, I: 'static> PartialEq<Call<T, I>> 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<Call<T, I>> 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> CheckedConversion for T
impl<T> CheckedConversion 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,
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
source§impl<T> Hashable for Twhere
T: Codec,
impl<T> Hashable for Twhere T: Codec,
fn blake2_128(&self) -> [u8; 16]
fn blake2_256(&self) -> [u8; 32]
fn blake2_128_concat(&self) -> Vec<u8, Global> ⓘ
fn twox_128(&self) -> [u8; 16]
fn twox_256(&self) -> [u8; 32]
fn twox_64_concat(&self) -> Vec<u8, Global> ⓘ
fn identity(&self) -> Vec<u8, Global> ⓘ
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§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> KeyedVec for Twhere
T: Codec,
impl<T> KeyedVec for Twhere T: Codec,
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
source§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere Self: UniqueSaturatedFrom<T>,
source§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.source§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
.source§impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere T: Bounded, S: TryInto<T>,
source§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
T
.