Enum pallet_society::pallet::Call
source · pub enum Call<T: Config<I>, I: 'static = ()> {
Show 20 variants
bid {
value: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance,
},
unbid {},
vouch {
who: <<T as Config>::Lookup as StaticLookup>::Source,
value: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance,
tip: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance,
},
unvouch {},
vote {
candidate: <<T as Config>::Lookup as StaticLookup>::Source,
approve: bool,
},
defender_vote {
approve: bool,
},
payout {},
waive_repay {
amount: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance,
},
found_society {
founder: <<T as Config>::Lookup as StaticLookup>::Source,
max_members: u32,
max_intake: u32,
max_strikes: u32,
candidate_deposit: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance,
rules: Vec<u8>,
},
dissolve {},
judge_suspended_member {
who: <<T as Config>::Lookup as StaticLookup>::Source,
forgive: bool,
},
set_parameters {
max_members: u32,
max_intake: u32,
max_strikes: u32,
candidate_deposit: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance,
},
punish_skeptic {},
claim_membership {},
bestow_membership {
candidate: T::AccountId,
},
kick_candidate {
candidate: T::AccountId,
},
resign_candidacy {},
drop_candidate {
candidate: T::AccountId,
},
cleanup_candidacy {
candidate: T::AccountId,
max: u32,
},
cleanup_challenge {
challenge_round: RoundIndex,
max: u32,
},
// some variants omitted
}
Expand description
Contains a variant per dispatchable extrinsic that this pallet has.
Variants§
bid
A user outside of the society can make a bid for entry.
Payment: The group’s Candidate Deposit will be reserved for making a bid. It is returned
when the bid becomes a member, or if the bid calls unbid
.
The dispatch origin for this call must be Signed.
Parameters:
value
: A one time payment the bid would like to receive when joining the society.
unbid
A bidder can remove their bid for entry into society. By doing so, they will have their candidate deposit returned or they will unvouch their voucher.
Payment: The bid deposit is unreserved if the user made a bid.
The dispatch origin for this call must be Signed and a bidder.
vouch
As a member, vouch for someone to join society by placing a bid on their behalf.
There is no deposit required to vouch for a new bid, but a member can only vouch for one bid at a time. If the bid becomes a suspended candidate and ultimately rejected by the suspension judgement origin, the member will be banned from vouching again.
As a vouching member, you can claim a tip if the candidate is accepted. This tip will be paid as a portion of the reward the member will receive for joining the society.
The dispatch origin for this call must be Signed and a member.
Parameters:
who
: The user who you would like to vouch for.value
: The total reward to be paid between you and the candidate if they become a member in the society.tip
: Your cut of the totalvalue
payout when the candidate is inducted into the society. Tips larger thanvalue
will be saturated upon payout.
Fields
who: <<T as Config>::Lookup as StaticLookup>::Source
unvouch
As a vouching member, unvouch a bid. This only works while vouched user is only a bidder (and not a candidate).
The dispatch origin for this call must be Signed and a vouching member.
Parameters:
pos
: Position in theBids
vector of the bid who should be unvouched.
vote
As a member, vote on a candidate.
The dispatch origin for this call must be Signed and a member.
Parameters:
candidate
: The candidate that the member would like to bid on.approve
: A boolean which says if the candidate should be approved (true
) or rejected (false
).
defender_vote
As a member, vote on the defender.
The dispatch origin for this call must be Signed and a member.
Parameters:
approve
: A boolean which says if the candidate should be approved (true
) or rejected (false
).
payout
Transfer the first matured payout for the sender and remove it from the records.
NOTE: This extrinsic needs to be called multiple times to claim multiple matured payouts.
Payment: The member will receive a payment equal to their first matured payout to their free balance.
The dispatch origin for this call must be Signed and a member with payouts remaining.
waive_repay
Repay the payment previously given to the member with the signed origin, remove any pending payments, and elevate them from rank 0 to rank 1.
found_society
Found the society.
This is done as a discrete action in order to allow for the pallet to be included into a running chain and can only be done once.
The dispatch origin for this call must be from the FounderSetOrigin.
Parameters:
founder
- The first member and head of the newly founded society.max_members
- The initial max number of members for the society.max_intake
- The maximum number of candidates per intake period.max_strikes
: The maximum number of strikes a member may get before they become suspended and may only be reinstated by the founder.candidate_deposit
: The deposit required to make a bid for membership of the group.rules
- The rules of this society concerning membership.
Complexity: O(1)
Fields
founder: <<T as Config>::Lookup as StaticLookup>::Source
dissolve
Dissolve the society and remove all members.
The dispatch origin for this call must be Signed, and the signing account must be both
the Founder
and the Head
. This implies that it may only be done when there is one
member.
judge_suspended_member
Allow suspension judgement origin to make judgement on a suspended member.
If a suspended member is forgiven, we simply add them back as a member, not affecting any of the existing storage items for that member.
If a suspended member is rejected, remove all associated storage items, including their payouts, and remove any vouched bids they currently have.
The dispatch origin for this call must be Signed from the Founder.
Parameters:
who
- The suspended member to be judged.forgive
- A boolean representing whether the suspension judgement origin forgives (true
) or rejects (false
) a suspended member.
set_parameters
Change the maximum number of members in society and the maximum number of new candidates in a single intake period.
The dispatch origin for this call must be Signed by the Founder.
Parameters:
max_members
- The maximum number of members for the society. This must be no less than the current number of members.max_intake
- The maximum number of candidates per intake period.max_strikes
: The maximum number of strikes a member may get before they become suspended and may only be reinstated by the founder.candidate_deposit
: The deposit required to make a bid for membership of the group.
Fields
punish_skeptic
Punish the skeptic with a strike if they did not vote on a candidate. Callable by the candidate.
claim_membership
Transform an approved candidate into a member. Callable only by the the candidate, and only after the period for voting has ended.
bestow_membership
Transform an approved candidate into a member. Callable only by the Signed origin of the Founder, only after the period for voting has ended and only when the candidate is not clearly rejected.
Fields
candidate: T::AccountId
kick_candidate
Remove the candidate’s application from the society. Callable only by the Signed origin of the Founder, only after the period for voting has ended, and only when they do not have a clear approval.
Any bid deposit is lost and voucher is banned.
Fields
candidate: T::AccountId
resign_candidacy
Remove the candidate’s application from the society. Callable only by the candidate.
Any bid deposit is lost and voucher is banned.
drop_candidate
Remove a candidate
’s failed application from the society. Callable by any
signed origin but only at the end of the subsequent round and only for
a candidate with more rejections than approvals.
The bid deposit is lost and the voucher is banned.
Fields
candidate: T::AccountId
cleanup_candidacy
Remove up to max
stale votes for the given candidate
.
May be called by any Signed origin, but only after the candidate’s candidacy is ended.
cleanup_challenge
Remove up to max
stale votes for the defender in the given challenge_round
.
May be called by any Signed origin, but only after the challenge round is ended.
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_bid(
value: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance,
) -> Self
pub fn new_call_variant_bid( value: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance, ) -> Self
Create a call with the variant bid
.
sourcepub fn new_call_variant_unbid() -> Self
pub fn new_call_variant_unbid() -> Self
Create a call with the variant unbid
.
sourcepub fn new_call_variant_vouch(
who: <<T as Config>::Lookup as StaticLookup>::Source,
value: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance,
tip: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance,
) -> Self
pub fn new_call_variant_vouch( who: <<T as Config>::Lookup as StaticLookup>::Source, value: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance, tip: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance, ) -> Self
Create a call with the variant vouch
.
sourcepub fn new_call_variant_unvouch() -> Self
pub fn new_call_variant_unvouch() -> Self
Create a call with the variant unvouch
.
sourcepub fn new_call_variant_vote(
candidate: <<T as Config>::Lookup as StaticLookup>::Source,
approve: bool,
) -> Self
pub fn new_call_variant_vote( candidate: <<T as Config>::Lookup as StaticLookup>::Source, approve: bool, ) -> Self
Create a call with the variant vote
.
sourcepub fn new_call_variant_defender_vote(approve: bool) -> Self
pub fn new_call_variant_defender_vote(approve: bool) -> Self
Create a call with the variant defender_vote
.
sourcepub fn new_call_variant_payout() -> Self
pub fn new_call_variant_payout() -> Self
Create a call with the variant payout
.
sourcepub fn new_call_variant_waive_repay(
amount: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance,
) -> Self
pub fn new_call_variant_waive_repay( amount: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance, ) -> Self
Create a call with the variant waive_repay
.
sourcepub fn new_call_variant_found_society(
founder: <<T as Config>::Lookup as StaticLookup>::Source,
max_members: u32,
max_intake: u32,
max_strikes: u32,
candidate_deposit: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance,
rules: Vec<u8>,
) -> Self
pub fn new_call_variant_found_society( founder: <<T as Config>::Lookup as StaticLookup>::Source, max_members: u32, max_intake: u32, max_strikes: u32, candidate_deposit: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance, rules: Vec<u8>, ) -> Self
Create a call with the variant found_society
.
sourcepub fn new_call_variant_dissolve() -> Self
pub fn new_call_variant_dissolve() -> Self
Create a call with the variant dissolve
.
sourcepub fn new_call_variant_judge_suspended_member(
who: <<T as Config>::Lookup as StaticLookup>::Source,
forgive: bool,
) -> Self
pub fn new_call_variant_judge_suspended_member( who: <<T as Config>::Lookup as StaticLookup>::Source, forgive: bool, ) -> Self
Create a call with the variant judge_suspended_member
.
sourcepub fn new_call_variant_set_parameters(
max_members: u32,
max_intake: u32,
max_strikes: u32,
candidate_deposit: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance,
) -> Self
pub fn new_call_variant_set_parameters( max_members: u32, max_intake: u32, max_strikes: u32, candidate_deposit: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance, ) -> Self
Create a call with the variant set_parameters
.
sourcepub fn new_call_variant_punish_skeptic() -> Self
pub fn new_call_variant_punish_skeptic() -> Self
Create a call with the variant punish_skeptic
.
sourcepub fn new_call_variant_claim_membership() -> Self
pub fn new_call_variant_claim_membership() -> Self
Create a call with the variant claim_membership
.
sourcepub fn new_call_variant_bestow_membership(candidate: T::AccountId) -> Self
pub fn new_call_variant_bestow_membership(candidate: T::AccountId) -> Self
Create a call with the variant bestow_membership
.
sourcepub fn new_call_variant_kick_candidate(candidate: T::AccountId) -> Self
pub fn new_call_variant_kick_candidate(candidate: T::AccountId) -> Self
Create a call with the variant kick_candidate
.
sourcepub fn new_call_variant_resign_candidacy() -> Self
pub fn new_call_variant_resign_candidacy() -> Self
Create a call with the variant resign_candidacy
.
sourcepub fn new_call_variant_drop_candidate(candidate: T::AccountId) -> Self
pub fn new_call_variant_drop_candidate(candidate: T::AccountId) -> Self
Create a call with the variant drop_candidate
.
sourcepub fn new_call_variant_cleanup_candidacy(
candidate: T::AccountId,
max: u32,
) -> Self
pub fn new_call_variant_cleanup_candidacy( candidate: T::AccountId, max: u32, ) -> Self
Create a call with the variant cleanup_candidacy
.
sourcepub fn new_call_variant_cleanup_challenge(
challenge_round: RoundIndex,
max: u32,
) -> Self
pub fn new_call_variant_cleanup_challenge( challenge_round: RoundIndex, max: u32, ) -> Self
Create a call with the variant cleanup_challenge
.
Trait Implementations§
source§impl<T: Config<I>, I: 'static> CheckIfFeeless for Call<T, I>
impl<T: Config<I>, I: 'static> CheckIfFeeless for Call<T, I>
source§fn is_feeless(&self, origin: &Self::Origin) -> bool
fn is_feeless(&self, origin: &Self::Origin) -> bool
#[pallet::feeless_if]
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 size_hint(&self) -> usize
fn size_hint(&self) -> usize
source§fn encode_to<__CodecOutputEdqy: Output + ?Sized>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy,
)
fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy, )
§fn using_encoded<R, F>(&self, f: F) -> R
fn using_encoded<R, F>(&self, f: F) -> R
§fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
source§impl<T: Config<I>, I: 'static> 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 as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: TypeInfo + 'static,
<<T as Config>::Lookup as StaticLookup>::Source: TypeInfo + 'static,
T::AccountId: TypeInfo + 'static,
T: Config<I> + 'static,
I: 'static,
impl<T, I> TypeInfo for Call<T, I>where
PhantomData<(T, I)>: TypeInfo + 'static,
<<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: TypeInfo + 'static,
<<T as Config>::Lookup as StaticLookup>::Source: TypeInfo + 'static,
T::AccountId: TypeInfo + 'static,
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> Freeze for Call<T, I>
impl<T, I> RefUnwindSafe for Call<T, I>where
<<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: RefUnwindSafe,
<<T as Config>::Lookup as StaticLookup>::Source: RefUnwindSafe,
<T as Config>::AccountId: RefUnwindSafe,
T: RefUnwindSafe,
I: RefUnwindSafe,
impl<T, I> Send for Call<T, I>
impl<T, I> Sync for Call<T, I>
impl<T, I> Unpin for Call<T, I>
impl<T, I> UnwindSafe for Call<T, I>where
<<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: UnwindSafe,
<<T as Config>::Lookup as StaticLookup>::Source: UnwindSafe,
<T as Config>::AccountId: UnwindSafe,
T: UnwindSafe,
I: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
§fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
§fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)§impl<T> Conv for T
impl<T> Conv for T
§impl<T> DecodeAll for Twhere
T: Decode,
impl<T> DecodeAll for Twhere
T: Decode,
§fn decode_all(input: &mut &[u8]) -> Result<T, Error>
fn decode_all(input: &mut &[u8]) -> Result<T, Error>
Self
and consume all of the given input data. Read more§impl<T> DecodeLimit for Twhere
T: Decode,
impl<T> DecodeLimit for Twhere
T: Decode,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
§impl<T> Hashable for Twhere
T: Codec,
impl<T> Hashable for Twhere
T: Codec,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<Src, Dest> IntoTuple<Dest> for Srcwhere
Dest: FromTuple<Src>,
impl<Src, Dest> IntoTuple<Dest> for Srcwhere
Dest: FromTuple<Src>,
fn into_tuple(self) -> Dest
§impl<T> IsType<T> for T
impl<T> IsType<T> for T
§impl<T, Outer> IsWrappedBy<Outer> for T
impl<T, Outer> IsWrappedBy<Outer> for T
§impl<T> KeyedVec for Twhere
T: Codec,
impl<T> KeyedVec for Twhere
T: Codec,
§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self
, then passes self.as_ref()
into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self
, then passes self.as_mut()
into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
T
. Read more§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.§impl<T> TryConv for T
impl<T> TryConv for T
§impl<T, U> TryIntoKey<U> for Twhere
U: TryFromKey<T>,
impl<T, U> TryIntoKey<U> for Twhere
U: TryFromKey<T>,
type Error = <U as TryFromKey<T>>::Error
fn try_into_key(self) -> Result<U, <U as TryFromKey<T>>::Error>
§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
unchecked_from
.§impl<T, S> UniqueSaturatedInto<T> for S
impl<T, S> UniqueSaturatedInto<T> for S
§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
T
.