Enum pallet_identity::pallet::Call
source · pub enum Call<T: Config> {
Show 24 variants
add_registrar {
account: <<T as Config>::Lookup as StaticLookup>::Source,
},
set_identity {
info: Box<T::IdentityInformation>,
},
set_subs {
subs: Vec<(T::AccountId, Data)>,
},
clear_identity {},
request_judgement {
reg_index: RegistrarIndex,
max_fee: <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance,
},
cancel_request {
reg_index: RegistrarIndex,
},
set_fee {
index: RegistrarIndex,
fee: <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance,
},
set_account_id {
index: RegistrarIndex,
new: <<T as Config>::Lookup as StaticLookup>::Source,
},
set_fields {
index: RegistrarIndex,
fields: <T::IdentityInformation as IdentityInformationProvider>::FieldsIdentifier,
},
provide_judgement {
reg_index: RegistrarIndex,
target: <<T as Config>::Lookup as StaticLookup>::Source,
judgement: Judgement<<<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance>,
identity: T::Hash,
},
kill_identity {
target: <<T as Config>::Lookup as StaticLookup>::Source,
},
add_sub {
sub: <<T as Config>::Lookup as StaticLookup>::Source,
data: Data,
},
rename_sub {
sub: <<T as Config>::Lookup as StaticLookup>::Source,
data: Data,
},
remove_sub {
sub: <<T as Config>::Lookup as StaticLookup>::Source,
},
quit_sub {},
add_username_authority {
authority: <<T as Config>::Lookup as StaticLookup>::Source,
suffix: Vec<u8>,
allocation: u32,
},
remove_username_authority {
suffix: Vec<u8>,
authority: <<T as Config>::Lookup as StaticLookup>::Source,
},
set_username_for {
who: <<T as Config>::Lookup as StaticLookup>::Source,
username: Vec<u8>,
signature: Option<T::OffchainSignature>,
use_allocation: bool,
},
accept_username {
username: BoundedVec<u8, <T as Config>::MaxUsernameLength>,
},
remove_expired_approval {
username: BoundedVec<u8, <T as Config>::MaxUsernameLength>,
},
set_primary_username {
username: BoundedVec<u8, <T as Config>::MaxUsernameLength>,
},
unbind_username {
username: BoundedVec<u8, <T as Config>::MaxUsernameLength>,
},
remove_username {
username: BoundedVec<u8, <T as Config>::MaxUsernameLength>,
},
kill_username {
username: BoundedVec<u8, <T as Config>::MaxUsernameLength>,
},
// some variants omitted
}
Expand description
Identity pallet declaration.
Variants§
add_registrar
Add a registrar to the system.
The dispatch origin for this call must be T::RegistrarOrigin
.
account
: the account of the registrar.
Emits RegistrarAdded
if successful.
Fields
account: <<T as Config>::Lookup as StaticLookup>::Source
set_identity
Set an account’s identity information and reserve the appropriate deposit.
If the account already has identity information, the deposit is taken as part payment for the new deposit.
The dispatch origin for this call must be Signed.
info
: The identity information.
Emits IdentitySet
if successful.
Fields
info: Box<T::IdentityInformation>
set_subs
Set the sub-accounts of the sender.
Payment: Any aggregate balance reserved by previous set_subs
calls will be returned
and an amount SubAccountDeposit
will be reserved for each item in subs
.
The dispatch origin for this call must be Signed and the sender must have a registered identity.
subs
: The identity’s (new) sub-accounts.
clear_identity
Clear an account’s identity info and all sub-accounts and return all deposits.
Payment: All reserved balances on the account are returned.
The dispatch origin for this call must be Signed and the sender must have a registered identity.
Emits IdentityCleared
if successful.
request_judgement
Request a judgement from a registrar.
Payment: At most max_fee
will be reserved for payment to the registrar if judgement
given.
The dispatch origin for this call must be Signed and the sender must have a registered identity.
reg_index
: The index of the registrar whose judgement is requested.max_fee
: The maximum fee that may be paid. This should just be auto-populated as:
Registrars::<T>::get().get(reg_index).unwrap().fee
Emits JudgementRequested
if successful.
Fields
reg_index: RegistrarIndex
cancel_request
Cancel a previous request.
Payment: A previously reserved deposit is returned on success.
The dispatch origin for this call must be Signed and the sender must have a registered identity.
reg_index
: The index of the registrar whose judgement is no longer requested.
Emits JudgementUnrequested
if successful.
Fields
reg_index: RegistrarIndex
set_fee
Set the fee required for a judgement to be requested from a registrar.
The dispatch origin for this call must be Signed and the sender must be the account
of the registrar whose index is index
.
index
: the index of the registrar whose fee is to be set.fee
: the new fee.
Fields
index: RegistrarIndex
set_account_id
Change the account associated with a registrar.
The dispatch origin for this call must be Signed and the sender must be the account
of the registrar whose index is index
.
index
: the index of the registrar whose fee is to be set.new
: the new account ID.
set_fields
Set the field information for a registrar.
The dispatch origin for this call must be Signed and the sender must be the account
of the registrar whose index is index
.
index
: the index of the registrar whose fee is to be set.fields
: the fields that the registrar concerns themselves with.
Fields
index: RegistrarIndex
fields: <T::IdentityInformation as IdentityInformationProvider>::FieldsIdentifier
provide_judgement
Provide a judgement for an account’s identity.
The dispatch origin for this call must be Signed and the sender must be the account
of the registrar whose index is reg_index
.
reg_index
: the index of the registrar whose judgement is being made.target
: the account whose identity the judgement is upon. This must be an account with a registered identity.judgement
: the judgement of the registrar of indexreg_index
abouttarget
.identity
: The hash of theIdentityInformationProvider
for that the judgement is provided.
Note: Judgements do not apply to a username.
Emits JudgementGiven
if successful.
Fields
reg_index: RegistrarIndex
target: <<T as Config>::Lookup as StaticLookup>::Source
identity: T::Hash
kill_identity
Remove an account’s identity and sub-account information and slash the deposits.
Payment: Reserved balances from set_subs
and set_identity
are slashed and handled by
Slash
. Verification request deposits are not returned; they should be cancelled
manually using cancel_request
.
The dispatch origin for this call must match T::ForceOrigin
.
target
: the account whose identity the judgement is upon. This must be an account with a registered identity.
Emits IdentityKilled
if successful.
Fields
target: <<T as Config>::Lookup as StaticLookup>::Source
add_sub
Add the given account to the sender’s subs.
Payment: Balance reserved by a previous set_subs
call for one sub will be repatriated
to the sender.
The dispatch origin for this call must be Signed and the sender must have a registered
sub identity of sub
.
rename_sub
Alter the associated name of the given sub-account.
The dispatch origin for this call must be Signed and the sender must have a registered
sub identity of sub
.
remove_sub
Remove the given account from the sender’s subs.
Payment: Balance reserved by a previous set_subs
call for one sub will be repatriated
to the sender.
The dispatch origin for this call must be Signed and the sender must have a registered
sub identity of sub
.
Fields
sub: <<T as Config>::Lookup as StaticLookup>::Source
quit_sub
Remove the sender as a sub-account.
Payment: Balance reserved by a previous set_subs
call for one sub will be repatriated
to the sender (not the original depositor).
The dispatch origin for this call must be Signed and the sender must have a registered super-identity.
NOTE: This should not normally be used, but is provided in the case that the non- controller of an account is maliciously registered as a sub-account.
Add an AccountId
with permission to grant usernames with a given suffix
appended.
The authority can grant up to allocation
usernames. To top up the allocation or
change the account used to grant usernames, this call can be used with the updated
parameters to overwrite the existing configuration.
Fields
Remove authority
from the username authorities.
Fields
set_username_for
Set the username for who
. Must be called by a username authority.
If use_allocation
is set, the authority must have a username allocation available to
spend. Otherwise, the authority will need to put up a deposit for registering the
username.
Users can either pre-sign their usernames or accept them later.
Usernames must:
- Only contain lowercase ASCII characters or digits.
- When combined with the suffix of the issuing authority be less than the
MaxUsernameLength
.
accept_username
Accept a given username that an authority
granted. The call must include the full
username, as in username.suffix
.
Fields
username: BoundedVec<u8, <T as Config>::MaxUsernameLength>
remove_expired_approval
Remove an expired username approval. The username was approved by an authority but never
accepted by the user and must now be beyond its expiration. The call must include the
full username, as in username.suffix
.
Fields
username: BoundedVec<u8, <T as Config>::MaxUsernameLength>
set_primary_username
Set a given username as the primary. The username should include the suffix.
Fields
username: BoundedVec<u8, <T as Config>::MaxUsernameLength>
unbind_username
Start the process of removing a username by placing it in the unbinding usernames map. Once the grace period has passed, the username can be deleted by calling remove_username.
Fields
username: BoundedVec<u8, <T as Config>::MaxUsernameLength>
remove_username
Permanently delete a username which has been unbinding for longer than the grace period. Caller is refunded the fee if the username expired and the removal was successful.
Fields
username: BoundedVec<u8, <T as Config>::MaxUsernameLength>
kill_username
Call with ForceOrigin privileges which deletes a username and slashes any deposit associated with it.
Fields
username: BoundedVec<u8, <T as Config>::MaxUsernameLength>
Implementations§
source§impl<T: Config> Call<T>
impl<T: Config> Call<T>
sourcepub fn new_call_variant_add_registrar(
account: <<T as Config>::Lookup as StaticLookup>::Source,
) -> Self
pub fn new_call_variant_add_registrar( account: <<T as Config>::Lookup as StaticLookup>::Source, ) -> Self
Create a call with the variant add_registrar
.
sourcepub fn new_call_variant_set_identity(info: Box<T::IdentityInformation>) -> Self
pub fn new_call_variant_set_identity(info: Box<T::IdentityInformation>) -> Self
Create a call with the variant set_identity
.
sourcepub fn new_call_variant_set_subs(subs: Vec<(T::AccountId, Data)>) -> Self
pub fn new_call_variant_set_subs(subs: Vec<(T::AccountId, Data)>) -> Self
Create a call with the variant set_subs
.
sourcepub fn new_call_variant_clear_identity() -> Self
pub fn new_call_variant_clear_identity() -> Self
Create a call with the variant clear_identity
.
sourcepub fn new_call_variant_request_judgement(
reg_index: RegistrarIndex,
max_fee: <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance,
) -> Self
pub fn new_call_variant_request_judgement( reg_index: RegistrarIndex, max_fee: <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance, ) -> Self
Create a call with the variant request_judgement
.
sourcepub fn new_call_variant_cancel_request(reg_index: RegistrarIndex) -> Self
pub fn new_call_variant_cancel_request(reg_index: RegistrarIndex) -> Self
Create a call with the variant cancel_request
.
sourcepub fn new_call_variant_set_fee(
index: RegistrarIndex,
fee: <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance,
) -> Self
pub fn new_call_variant_set_fee( index: RegistrarIndex, fee: <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance, ) -> Self
Create a call with the variant set_fee
.
sourcepub fn new_call_variant_set_account_id(
index: RegistrarIndex,
new: <<T as Config>::Lookup as StaticLookup>::Source,
) -> Self
pub fn new_call_variant_set_account_id( index: RegistrarIndex, new: <<T as Config>::Lookup as StaticLookup>::Source, ) -> Self
Create a call with the variant set_account_id
.
sourcepub fn new_call_variant_set_fields(
index: RegistrarIndex,
fields: <T::IdentityInformation as IdentityInformationProvider>::FieldsIdentifier,
) -> Self
pub fn new_call_variant_set_fields( index: RegistrarIndex, fields: <T::IdentityInformation as IdentityInformationProvider>::FieldsIdentifier, ) -> Self
Create a call with the variant set_fields
.
sourcepub fn new_call_variant_provide_judgement(
reg_index: RegistrarIndex,
target: <<T as Config>::Lookup as StaticLookup>::Source,
judgement: Judgement<<<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance>,
identity: T::Hash,
) -> Self
pub fn new_call_variant_provide_judgement( reg_index: RegistrarIndex, target: <<T as Config>::Lookup as StaticLookup>::Source, judgement: Judgement<<<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance>, identity: T::Hash, ) -> Self
Create a call with the variant provide_judgement
.
sourcepub fn new_call_variant_kill_identity(
target: <<T as Config>::Lookup as StaticLookup>::Source,
) -> Self
pub fn new_call_variant_kill_identity( target: <<T as Config>::Lookup as StaticLookup>::Source, ) -> Self
Create a call with the variant kill_identity
.
sourcepub fn new_call_variant_add_sub(
sub: <<T as Config>::Lookup as StaticLookup>::Source,
data: Data,
) -> Self
pub fn new_call_variant_add_sub( sub: <<T as Config>::Lookup as StaticLookup>::Source, data: Data, ) -> Self
Create a call with the variant add_sub
.
sourcepub fn new_call_variant_rename_sub(
sub: <<T as Config>::Lookup as StaticLookup>::Source,
data: Data,
) -> Self
pub fn new_call_variant_rename_sub( sub: <<T as Config>::Lookup as StaticLookup>::Source, data: Data, ) -> Self
Create a call with the variant rename_sub
.
sourcepub fn new_call_variant_remove_sub(
sub: <<T as Config>::Lookup as StaticLookup>::Source,
) -> Self
pub fn new_call_variant_remove_sub( sub: <<T as Config>::Lookup as StaticLookup>::Source, ) -> Self
Create a call with the variant remove_sub
.
sourcepub fn new_call_variant_quit_sub() -> Self
pub fn new_call_variant_quit_sub() -> Self
Create a call with the variant quit_sub
.
Create a call with the variant add_username_authority
.
Create a call with the variant remove_username_authority
.
sourcepub fn new_call_variant_set_username_for(
who: <<T as Config>::Lookup as StaticLookup>::Source,
username: Vec<u8>,
signature: Option<T::OffchainSignature>,
use_allocation: bool,
) -> Self
pub fn new_call_variant_set_username_for( who: <<T as Config>::Lookup as StaticLookup>::Source, username: Vec<u8>, signature: Option<T::OffchainSignature>, use_allocation: bool, ) -> Self
Create a call with the variant set_username_for
.
sourcepub fn new_call_variant_accept_username(
username: BoundedVec<u8, <T as Config>::MaxUsernameLength>,
) -> Self
pub fn new_call_variant_accept_username( username: BoundedVec<u8, <T as Config>::MaxUsernameLength>, ) -> Self
Create a call with the variant accept_username
.
sourcepub fn new_call_variant_remove_expired_approval(
username: BoundedVec<u8, <T as Config>::MaxUsernameLength>,
) -> Self
pub fn new_call_variant_remove_expired_approval( username: BoundedVec<u8, <T as Config>::MaxUsernameLength>, ) -> Self
Create a call with the variant remove_expired_approval
.
sourcepub fn new_call_variant_set_primary_username(
username: BoundedVec<u8, <T as Config>::MaxUsernameLength>,
) -> Self
pub fn new_call_variant_set_primary_username( username: BoundedVec<u8, <T as Config>::MaxUsernameLength>, ) -> Self
Create a call with the variant set_primary_username
.
sourcepub fn new_call_variant_unbind_username(
username: BoundedVec<u8, <T as Config>::MaxUsernameLength>,
) -> Self
pub fn new_call_variant_unbind_username( username: BoundedVec<u8, <T as Config>::MaxUsernameLength>, ) -> Self
Create a call with the variant unbind_username
.
sourcepub fn new_call_variant_remove_username(
username: BoundedVec<u8, <T as Config>::MaxUsernameLength>,
) -> Self
pub fn new_call_variant_remove_username( username: BoundedVec<u8, <T as Config>::MaxUsernameLength>, ) -> Self
Create a call with the variant remove_username
.
sourcepub fn new_call_variant_kill_username(
username: BoundedVec<u8, <T as Config>::MaxUsernameLength>,
) -> Self
pub fn new_call_variant_kill_username( username: BoundedVec<u8, <T as Config>::MaxUsernameLength>, ) -> Self
Create a call with the variant kill_username
.
Trait Implementations§
source§impl<T: Config> CheckIfFeeless for Call<T>
impl<T: Config> CheckIfFeeless for Call<T>
source§fn is_feeless(&self, origin: &Self::Origin) -> bool
fn is_feeless(&self, origin: &Self::Origin) -> bool
#[pallet::feeless_if]
source§impl<T: Config> Decode for Call<T>
impl<T: Config> Decode for Call<T>
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> Encode for Call<T>
impl<T: Config> Encode for Call<T>
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> GetCallIndex for Call<T>
impl<T: Config> GetCallIndex for Call<T>
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> GetCallName for Call<T>
impl<T: Config> GetCallName for Call<T>
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> GetDispatchInfo for Call<T>
impl<T: Config> GetDispatchInfo for Call<T>
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> PartialEq for Call<T>
impl<T: Config> PartialEq for Call<T>
source§impl<T> TypeInfo for Call<T>where
PhantomData<(T,)>: TypeInfo + 'static,
<<T as Config>::Lookup as StaticLookup>::Source: TypeInfo + 'static,
Box<T::IdentityInformation>: TypeInfo + 'static,
Vec<(T::AccountId, Data)>: TypeInfo + 'static,
<<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: HasCompact,
<T::IdentityInformation as IdentityInformationProvider>::FieldsIdentifier: TypeInfo + 'static,
Judgement<<<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance>: TypeInfo + 'static,
T::Hash: TypeInfo + 'static,
Option<T::OffchainSignature>: TypeInfo + 'static,
BoundedVec<u8, <T as Config>::MaxUsernameLength>: TypeInfo + 'static,
T: Config + 'static,
impl<T> TypeInfo for Call<T>where
PhantomData<(T,)>: TypeInfo + 'static,
<<T as Config>::Lookup as StaticLookup>::Source: TypeInfo + 'static,
Box<T::IdentityInformation>: TypeInfo + 'static,
Vec<(T::AccountId, Data)>: TypeInfo + 'static,
<<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: HasCompact,
<T::IdentityInformation as IdentityInformationProvider>::FieldsIdentifier: TypeInfo + 'static,
Judgement<<<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance>: TypeInfo + 'static,
T::Hash: TypeInfo + 'static,
Option<T::OffchainSignature>: TypeInfo + 'static,
BoundedVec<u8, <T as Config>::MaxUsernameLength>: TypeInfo + 'static,
T: Config + 'static,
source§impl<T: Config> UnfilteredDispatchable for Call<T>
impl<T: Config> UnfilteredDispatchable for Call<T>
§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> EncodeLike for Call<T>
impl<T: Config> Eq for Call<T>
Auto Trait Implementations§
impl<T> Freeze for Call<T>where
<<T as Config>::Lookup as StaticLookup>::Source: Freeze,
<<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,
<<T as Config>::IdentityInformation as IdentityInformationProvider>::FieldsIdentifier: Freeze,
<T as Config>::Hash: Freeze,
<T as Config>::OffchainSignature: Freeze,
impl<T> RefUnwindSafe for Call<T>where
<<T as Config>::Lookup as StaticLookup>::Source: RefUnwindSafe,
<<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: RefUnwindSafe,
<<T as Config>::IdentityInformation as IdentityInformationProvider>::FieldsIdentifier: RefUnwindSafe,
<T as Config>::Hash: RefUnwindSafe,
<T as Config>::OffchainSignature: RefUnwindSafe,
T: RefUnwindSafe,
<T as Config>::MaxUsernameLength: RefUnwindSafe,
<T as Config>::IdentityInformation: RefUnwindSafe,
<T as Config>::AccountId: RefUnwindSafe,
impl<T> Send for Call<T>where
<<T as Config>::Lookup as StaticLookup>::Source: Send,
<T as Config>::OffchainSignature: Send,
T: Send,
<T as Config>::IdentityInformation: Send,
<T as Config>::MaxUsernameLength: Send,
impl<T> Sync for Call<T>where
<<T as Config>::Lookup as StaticLookup>::Source: Sync,
<T as Config>::OffchainSignature: Sync,
T: Sync,
<T as Config>::IdentityInformation: Sync,
<T as Config>::MaxUsernameLength: Sync,
impl<T> Unpin for Call<T>where
<<T as Config>::Lookup as StaticLookup>::Source: Unpin,
<<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Unpin,
<<T as Config>::IdentityInformation as IdentityInformationProvider>::FieldsIdentifier: Unpin,
<T as Config>::Hash: Unpin,
<T as Config>::OffchainSignature: Unpin,
T: Unpin,
<T as Config>::MaxUsernameLength: Unpin,
<T as Config>::AccountId: Unpin,
impl<T> UnwindSafe for Call<T>where
<<T as Config>::Lookup as StaticLookup>::Source: UnwindSafe,
<<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: UnwindSafe,
<<T as Config>::IdentityInformation as IdentityInformationProvider>::FieldsIdentifier: UnwindSafe,
<T as Config>::Hash: UnwindSafe,
<T as Config>::OffchainSignature: UnwindSafe,
T: UnwindSafe,
<T as Config>::IdentityInformation: UnwindSafe,
<T as Config>::MaxUsernameLength: UnwindSafe,
<T as Config>::AccountId: 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
.