Enum pallet_parachain_staking::pallet::Call
source · pub enum Call<T: Config> {
Show 33 variants
set_staking_expectations {
expectations: Range<BalanceOf<T>>,
},
set_inflation {
schedule: Range<Perbill>,
},
set_parachain_bond_account {
new: T::AccountId,
},
set_parachain_bond_reserve_percent {
new: Percent,
},
set_total_selected {
new: u32,
},
set_collator_commission {
new: Perbill,
},
set_blocks_per_round {
new: u32,
},
join_candidates {
bond: BalanceOf<T>,
candidate_count: u32,
},
schedule_leave_candidates {
candidate_count: u32,
},
execute_leave_candidates {
candidate: T::AccountId,
candidate_delegation_count: u32,
},
cancel_leave_candidates {
candidate_count: u32,
},
go_offline {},
go_online {},
candidate_bond_more {
more: BalanceOf<T>,
},
schedule_candidate_bond_less {
less: BalanceOf<T>,
},
execute_candidate_bond_less {
candidate: T::AccountId,
},
cancel_candidate_bond_less {},
delegate {
candidate: T::AccountId,
amount: BalanceOf<T>,
candidate_delegation_count: u32,
delegation_count: u32,
},
delegate_with_auto_compound {
candidate: T::AccountId,
amount: BalanceOf<T>,
auto_compound: Percent,
candidate_delegation_count: u32,
candidate_auto_compounding_delegation_count: u32,
delegation_count: u32,
},
removed_call_19 {},
removed_call_20 {},
removed_call_21 {},
schedule_revoke_delegation {
collator: T::AccountId,
},
delegator_bond_more {
candidate: T::AccountId,
more: BalanceOf<T>,
},
schedule_delegator_bond_less {
candidate: T::AccountId,
less: BalanceOf<T>,
},
execute_delegation_request {
delegator: T::AccountId,
candidate: T::AccountId,
},
cancel_delegation_request {
candidate: T::AccountId,
},
set_auto_compound {
candidate: T::AccountId,
value: Percent,
candidate_auto_compounding_delegation_count_hint: u32,
delegation_count_hint: u32,
},
hotfix_remove_delegation_requests_exited_candidates {
candidates: Vec<T::AccountId>,
},
notify_inactive_collator {
collator: T::AccountId,
},
enable_marking_offline {
value: bool,
},
force_join_candidates {
account: T::AccountId,
bond: BalanceOf<T>,
candidate_count: u32,
},
set_inflation_distribution_config {
new: InflationDistributionConfig<T::AccountId>,
},
// some variants omitted
}
Expand description
Contains a variant per dispatchable extrinsic that this pallet has.
Variants§
set_staking_expectations
Set the expectations for total staked. These expectations determine the issuance for
the round according to logic in fn compute_issuance
set_inflation
Set the annual inflation rate to derive per-round inflation
set_parachain_bond_account
Fields
new: T::AccountId
Deprecated: please use set_inflation_distribution_config
instead.
Set the account that will hold funds set aside for parachain bond
set_parachain_bond_reserve_percent
Fields
new: Percent
Deprecated: please use set_inflation_distribution_config
instead.
Set the percent of inflation set aside for parachain bond
set_total_selected
Set the total number of collator candidates selected per round
- changes are not applied until the start of the next round
set_collator_commission
Fields
new: Perbill
Set the commission for all collators
set_blocks_per_round
Set blocks per round
- if called with
new
less than length of current round, will transition immediately in the next block - also updates per-round inflation config
join_candidates
Join the set of collator candidates
schedule_leave_candidates
Request to leave the set of candidates. If successful, the account is immediately removed from the candidate pool to prevent selection as a collator.
execute_leave_candidates
Execute leave candidates request
cancel_leave_candidates
Cancel open request to leave candidates
- only callable by collator account
- result upon successful call is the candidate is active in the candidate pool
go_offline
Temporarily leave the set of collator candidates without unbonding
go_online
Rejoin the set of collator candidates if previously had called go_offline
candidate_bond_more
Increase collator candidate self bond by more
schedule_candidate_bond_less
Request by collator candidate to decrease self bond by less
execute_candidate_bond_less
Fields
candidate: T::AccountId
Execute pending request to adjust the collator candidate self bond
cancel_candidate_bond_less
Cancel pending request to adjust the collator candidate self bond
delegate
Fields
candidate: T::AccountId
DEPRECATED use delegateWithAutoCompound If caller is not a delegator and not a collator, then join the set of delegators If caller is a delegator, then makes delegation to change their delegation state
delegate_with_auto_compound
If caller is not a delegator and not a collator, then join the set of delegators If caller is a delegator, then makes delegation to change their delegation state Sets the auto-compound config for the delegation
removed_call_19
REMOVED, was schedule_leave_delegators
removed_call_20
REMOVED, was execute_leave_delegators
removed_call_21
REMOVED, was cancel_leave_delegators
schedule_revoke_delegation
Fields
collator: T::AccountId
Request to revoke an existing delegation. If successful, the delegation is scheduled
to be allowed to be revoked via the execute_delegation_request
extrinsic.
The delegation receives no rewards for the rounds while a revoke is pending.
A revoke may not be performed if any other scheduled request is pending.
delegator_bond_more
Bond more for delegators wrt a specific collator candidate.
schedule_delegator_bond_less
Request bond less for delegators wrt a specific collator candidate. The delegation’s rewards for rounds while the request is pending use the reduced bonded amount. A bond less may not be performed if any other scheduled request is pending.
execute_delegation_request
Execute pending request to change an existing delegation
cancel_delegation_request
Fields
candidate: T::AccountId
Cancel request to change an existing delegation.
set_auto_compound
Sets the auto-compounding reward percentage for a delegation.
hotfix_remove_delegation_requests_exited_candidates
Hotfix to remove existing empty entries for candidates that have left.
notify_inactive_collator
Fields
collator: T::AccountId
Notify a collator is inactive during MaxOfflineRounds
enable_marking_offline
Enable/Disable marking offline feature
force_join_candidates
Force join the set of collator candidates. It will skip the minimum required bond check.
set_inflation_distribution_config
Fields
new: InflationDistributionConfig<T::AccountId>
Set the inflation distribution configuration.
Implementations§
source§impl<T: Config> Call<T>
impl<T: Config> Call<T>
sourcepub fn new_call_variant_set_staking_expectations(
expectations: Range<BalanceOf<T>>
) -> Self
pub fn new_call_variant_set_staking_expectations( expectations: Range<BalanceOf<T>> ) -> Self
Create a call with the variant set_staking_expectations
.
sourcepub fn new_call_variant_set_inflation(schedule: Range<Perbill>) -> Self
pub fn new_call_variant_set_inflation(schedule: Range<Perbill>) -> Self
Create a call with the variant set_inflation
.
sourcepub fn new_call_variant_set_parachain_bond_account(new: T::AccountId) -> Self
pub fn new_call_variant_set_parachain_bond_account(new: T::AccountId) -> Self
Create a call with the variant set_parachain_bond_account
.
sourcepub fn new_call_variant_set_parachain_bond_reserve_percent(new: Percent) -> Self
pub fn new_call_variant_set_parachain_bond_reserve_percent(new: Percent) -> Self
Create a call with the variant set_parachain_bond_reserve_percent
.
sourcepub fn new_call_variant_set_total_selected(new: u32) -> Self
pub fn new_call_variant_set_total_selected(new: u32) -> Self
Create a call with the variant set_total_selected
.
sourcepub fn new_call_variant_set_collator_commission(new: Perbill) -> Self
pub fn new_call_variant_set_collator_commission(new: Perbill) -> Self
Create a call with the variant set_collator_commission
.
sourcepub fn new_call_variant_set_blocks_per_round(new: u32) -> Self
pub fn new_call_variant_set_blocks_per_round(new: u32) -> Self
Create a call with the variant set_blocks_per_round
.
sourcepub fn new_call_variant_join_candidates(
bond: BalanceOf<T>,
candidate_count: u32
) -> Self
pub fn new_call_variant_join_candidates( bond: BalanceOf<T>, candidate_count: u32 ) -> Self
Create a call with the variant join_candidates
.
sourcepub fn new_call_variant_schedule_leave_candidates(candidate_count: u32) -> Self
pub fn new_call_variant_schedule_leave_candidates(candidate_count: u32) -> Self
Create a call with the variant schedule_leave_candidates
.
sourcepub fn new_call_variant_execute_leave_candidates(
candidate: T::AccountId,
candidate_delegation_count: u32
) -> Self
pub fn new_call_variant_execute_leave_candidates( candidate: T::AccountId, candidate_delegation_count: u32 ) -> Self
Create a call with the variant execute_leave_candidates
.
sourcepub fn new_call_variant_cancel_leave_candidates(candidate_count: u32) -> Self
pub fn new_call_variant_cancel_leave_candidates(candidate_count: u32) -> Self
Create a call with the variant cancel_leave_candidates
.
sourcepub fn new_call_variant_go_offline() -> Self
pub fn new_call_variant_go_offline() -> Self
Create a call with the variant go_offline
.
sourcepub fn new_call_variant_go_online() -> Self
pub fn new_call_variant_go_online() -> Self
Create a call with the variant go_online
.
sourcepub fn new_call_variant_candidate_bond_more(more: BalanceOf<T>) -> Self
pub fn new_call_variant_candidate_bond_more(more: BalanceOf<T>) -> Self
Create a call with the variant candidate_bond_more
.
sourcepub fn new_call_variant_schedule_candidate_bond_less(less: BalanceOf<T>) -> Self
pub fn new_call_variant_schedule_candidate_bond_less(less: BalanceOf<T>) -> Self
Create a call with the variant schedule_candidate_bond_less
.
sourcepub fn new_call_variant_execute_candidate_bond_less(
candidate: T::AccountId
) -> Self
pub fn new_call_variant_execute_candidate_bond_less( candidate: T::AccountId ) -> Self
Create a call with the variant execute_candidate_bond_less
.
sourcepub fn new_call_variant_cancel_candidate_bond_less() -> Self
pub fn new_call_variant_cancel_candidate_bond_less() -> Self
Create a call with the variant cancel_candidate_bond_less
.
sourcepub fn new_call_variant_delegate(
candidate: T::AccountId,
amount: BalanceOf<T>,
candidate_delegation_count: u32,
delegation_count: u32
) -> Self
pub fn new_call_variant_delegate( candidate: T::AccountId, amount: BalanceOf<T>, candidate_delegation_count: u32, delegation_count: u32 ) -> Self
Create a call with the variant delegate
.
sourcepub fn new_call_variant_delegate_with_auto_compound(
candidate: T::AccountId,
amount: BalanceOf<T>,
auto_compound: Percent,
candidate_delegation_count: u32,
candidate_auto_compounding_delegation_count: u32,
delegation_count: u32
) -> Self
pub fn new_call_variant_delegate_with_auto_compound( candidate: T::AccountId, amount: BalanceOf<T>, auto_compound: Percent, candidate_delegation_count: u32, candidate_auto_compounding_delegation_count: u32, delegation_count: u32 ) -> Self
Create a call with the variant delegate_with_auto_compound
.
sourcepub fn new_call_variant_removed_call_19() -> Self
pub fn new_call_variant_removed_call_19() -> Self
Create a call with the variant removed_call_19
.
sourcepub fn new_call_variant_removed_call_20() -> Self
pub fn new_call_variant_removed_call_20() -> Self
Create a call with the variant removed_call_20
.
sourcepub fn new_call_variant_removed_call_21() -> Self
pub fn new_call_variant_removed_call_21() -> Self
Create a call with the variant removed_call_21
.
sourcepub fn new_call_variant_schedule_revoke_delegation(
collator: T::AccountId
) -> Self
pub fn new_call_variant_schedule_revoke_delegation( collator: T::AccountId ) -> Self
Create a call with the variant schedule_revoke_delegation
.
sourcepub fn new_call_variant_delegator_bond_more(
candidate: T::AccountId,
more: BalanceOf<T>
) -> Self
pub fn new_call_variant_delegator_bond_more( candidate: T::AccountId, more: BalanceOf<T> ) -> Self
Create a call with the variant delegator_bond_more
.
sourcepub fn new_call_variant_schedule_delegator_bond_less(
candidate: T::AccountId,
less: BalanceOf<T>
) -> Self
pub fn new_call_variant_schedule_delegator_bond_less( candidate: T::AccountId, less: BalanceOf<T> ) -> Self
Create a call with the variant schedule_delegator_bond_less
.
sourcepub fn new_call_variant_execute_delegation_request(
delegator: T::AccountId,
candidate: T::AccountId
) -> Self
pub fn new_call_variant_execute_delegation_request( delegator: T::AccountId, candidate: T::AccountId ) -> Self
Create a call with the variant execute_delegation_request
.
sourcepub fn new_call_variant_cancel_delegation_request(
candidate: T::AccountId
) -> Self
pub fn new_call_variant_cancel_delegation_request( candidate: T::AccountId ) -> Self
Create a call with the variant cancel_delegation_request
.
sourcepub fn new_call_variant_set_auto_compound(
candidate: T::AccountId,
value: Percent,
candidate_auto_compounding_delegation_count_hint: u32,
delegation_count_hint: u32
) -> Self
pub fn new_call_variant_set_auto_compound( candidate: T::AccountId, value: Percent, candidate_auto_compounding_delegation_count_hint: u32, delegation_count_hint: u32 ) -> Self
Create a call with the variant set_auto_compound
.
sourcepub fn new_call_variant_hotfix_remove_delegation_requests_exited_candidates(
candidates: Vec<T::AccountId>
) -> Self
pub fn new_call_variant_hotfix_remove_delegation_requests_exited_candidates( candidates: Vec<T::AccountId> ) -> Self
Create a call with the variant hotfix_remove_delegation_requests_exited_candidates
.
sourcepub fn new_call_variant_notify_inactive_collator(collator: T::AccountId) -> Self
pub fn new_call_variant_notify_inactive_collator(collator: T::AccountId) -> Self
Create a call with the variant notify_inactive_collator
.
sourcepub fn new_call_variant_enable_marking_offline(value: bool) -> Self
pub fn new_call_variant_enable_marking_offline(value: bool) -> Self
Create a call with the variant enable_marking_offline
.
sourcepub fn new_call_variant_force_join_candidates(
account: T::AccountId,
bond: BalanceOf<T>,
candidate_count: u32
) -> Self
pub fn new_call_variant_force_join_candidates( account: T::AccountId, bond: BalanceOf<T>, candidate_count: u32 ) -> Self
Create a call with the variant force_join_candidates
.
sourcepub fn new_call_variant_set_inflation_distribution_config(
new: InflationDistributionConfig<T::AccountId>
) -> Self
pub fn new_call_variant_set_inflation_distribution_config( new: InflationDistributionConfig<T::AccountId> ) -> Self
Create a call with the variant set_inflation_distribution_config
.
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,
Range<BalanceOf<T>>: TypeInfo + 'static,
T::AccountId: TypeInfo + 'static,
BalanceOf<T>: TypeInfo + 'static,
Vec<T::AccountId>: TypeInfo + 'static,
InflationDistributionConfig<T::AccountId>: TypeInfo + 'static,
T: Config + 'static,
impl<T> TypeInfo for Call<T>where
PhantomData<(T,)>: TypeInfo + 'static,
Range<BalanceOf<T>>: TypeInfo + 'static,
T::AccountId: TypeInfo + 'static,
BalanceOf<T>: TypeInfo + 'static,
Vec<T::AccountId>: TypeInfo + 'static,
InflationDistributionConfig<T::AccountId>: 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> RefUnwindSafe for Call<T>where
T: RefUnwindSafe,
<T as Config>::AccountId: RefUnwindSafe,
<<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: RefUnwindSafe,
impl<T> Send for Call<T>where
T: Send,
impl<T> Sync for Call<T>where
T: Sync,
impl<T> Unpin for Call<T>
impl<T> UnwindSafe for Call<T>where
T: UnwindSafe,
<T as Config>::AccountId: UnwindSafe,
<<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: 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>,
§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,
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<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<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,
source§impl<Src, Dst> LossyInto<Dst> for Srcwhere
Dst: LossyFrom<Src>,
impl<Src, Dst> LossyInto<Dst> for Srcwhere
Dst: LossyFrom<Src>,
source§fn lossy_into(self) -> Dst
fn lossy_into(self) -> Dst
§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<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
.