Struct pallet_society::pallet::Pallet
source · pub struct Pallet<T, I = ()>(_);
Expand description
The Pallet
struct, the main type that implements traits and standalone
functions within the pallet.
Implementations§
source§impl<T: Config<I>, I: 'static> Pallet<T, I>
impl<T: Config<I>, I: 'static> Pallet<T, I>
sourcepub fn bid(
origin: OriginFor<T>,
value: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance
) -> DispatchResult
pub fn bid( origin: OriginFor<T>, value: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance ) -> DispatchResult
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.
sourcepub fn unbid(origin: OriginFor<T>) -> DispatchResult
pub fn unbid(origin: OriginFor<T>) -> DispatchResult
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.
sourcepub fn vouch(
origin: OriginFor<T>,
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
) -> DispatchResult
pub fn vouch( origin: OriginFor<T>, 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 ) -> DispatchResult
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.
sourcepub fn unvouch(origin: OriginFor<T>) -> DispatchResult
pub fn unvouch(origin: OriginFor<T>) -> DispatchResult
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.
sourcepub fn vote(
origin: OriginFor<T>,
candidate: <<T as Config>::Lookup as StaticLookup>::Source,
approve: bool
) -> DispatchResultWithPostInfo
pub fn vote( origin: OriginFor<T>, candidate: <<T as Config>::Lookup as StaticLookup>::Source, approve: bool ) -> DispatchResultWithPostInfo
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
).
sourcepub fn defender_vote(
origin: OriginFor<T>,
approve: bool
) -> DispatchResultWithPostInfo
pub fn defender_vote( origin: OriginFor<T>, approve: bool ) -> DispatchResultWithPostInfo
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
).
sourcepub fn payout(origin: OriginFor<T>) -> DispatchResult
pub fn payout(origin: OriginFor<T>) -> DispatchResult
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.
sourcepub fn waive_repay(
origin: OriginFor<T>,
amount: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance
) -> DispatchResult
pub fn waive_repay( origin: OriginFor<T>, amount: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance ) -> DispatchResult
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.
sourcepub fn found_society(
origin: OriginFor<T>,
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>
) -> DispatchResult
pub fn found_society( origin: OriginFor<T>, 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> ) -> DispatchResult
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)
sourcepub fn dissolve(origin: OriginFor<T>) -> DispatchResult
pub fn dissolve(origin: OriginFor<T>) -> DispatchResult
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.
sourcepub fn judge_suspended_member(
origin: OriginFor<T>,
who: <<T as Config>::Lookup as StaticLookup>::Source,
forgive: bool
) -> DispatchResultWithPostInfo
pub fn judge_suspended_member( origin: OriginFor<T>, who: <<T as Config>::Lookup as StaticLookup>::Source, forgive: bool ) -> DispatchResultWithPostInfo
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.
sourcepub fn set_parameters(
origin: OriginFor<T>,
max_members: u32,
max_intake: u32,
max_strikes: u32,
candidate_deposit: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance
) -> DispatchResult
pub fn set_parameters( origin: OriginFor<T>, max_members: u32, max_intake: u32, max_strikes: u32, candidate_deposit: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance ) -> DispatchResult
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.
sourcepub fn punish_skeptic(origin: OriginFor<T>) -> DispatchResultWithPostInfo
pub fn punish_skeptic(origin: OriginFor<T>) -> DispatchResultWithPostInfo
Punish the skeptic with a strike if they did not vote on a candidate. Callable by the candidate.
sourcepub fn claim_membership(origin: OriginFor<T>) -> DispatchResultWithPostInfo
pub fn claim_membership(origin: OriginFor<T>) -> DispatchResultWithPostInfo
Transform an approved candidate into a member. Callable only by the the candidate, and only after the period for voting has ended.
sourcepub fn bestow_membership(
origin: OriginFor<T>,
candidate: T::AccountId
) -> DispatchResultWithPostInfo
pub fn bestow_membership( origin: OriginFor<T>, candidate: T::AccountId ) -> DispatchResultWithPostInfo
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.
sourcepub fn kick_candidate(
origin: OriginFor<T>,
candidate: T::AccountId
) -> DispatchResultWithPostInfo
pub fn kick_candidate( origin: OriginFor<T>, candidate: T::AccountId ) -> DispatchResultWithPostInfo
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.
sourcepub fn resign_candidacy(origin: OriginFor<T>) -> DispatchResultWithPostInfo
pub fn resign_candidacy(origin: OriginFor<T>) -> DispatchResultWithPostInfo
Remove the candidate’s application from the society. Callable only by the candidate.
Any bid deposit is lost and voucher is banned.
sourcepub fn drop_candidate(
origin: OriginFor<T>,
candidate: T::AccountId
) -> DispatchResultWithPostInfo
pub fn drop_candidate( origin: OriginFor<T>, candidate: T::AccountId ) -> DispatchResultWithPostInfo
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.
sourcepub fn cleanup_candidacy(
origin: OriginFor<T>,
candidate: T::AccountId,
max: u32
) -> DispatchResultWithPostInfo
pub fn cleanup_candidacy( origin: OriginFor<T>, candidate: T::AccountId, max: u32 ) -> DispatchResultWithPostInfo
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.
sourcepub fn cleanup_challenge(
origin: OriginFor<T>,
challenge_round: RoundIndex,
max: u32
) -> DispatchResultWithPostInfo
pub fn cleanup_challenge( origin: OriginFor<T>, challenge_round: RoundIndex, max: u32 ) -> DispatchResultWithPostInfo
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.
source§impl<T: Config<I>, I: 'static> Pallet<T, I>
impl<T: Config<I>, I: 'static> Pallet<T, I>
sourcepub fn select_new_candidates(
round: RoundIndex,
member_count: u32,
pot: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance
) -> u32
pub fn select_new_candidates( round: RoundIndex, member_count: u32, pot: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance ) -> u32
Remove a selection of bidding accounts such that the total bids is no greater than Pot
and
the number of bids would not surpass MaxMembers
if all were accepted. At most one bid may
be zero.
Candidates are inserted from each bidder.
The number of candidates inserted are returned.
sourcepub fn remove_member(m: &T::AccountId) -> Result<MemberRecord, DispatchError>
pub fn remove_member(m: &T::AccountId) -> Result<MemberRecord, DispatchError>
Remove a member from the members list and return the candidacy.
If the member was vouching, then this will be reset. Any bidders that the member was vouching for will be cancelled unless they are already selected as candidates (in which case they will be able to stand).
If the member has existing payouts, they will be retained in the resultant MemberRecord
and the funds will remain reserved.
The Head and the Founder may never be removed.
sourcepub fn account_id() -> T::AccountId
pub fn account_id() -> T::AccountId
The account ID of the treasury pot.
This actually does computation. If you need to keep using it, then make sure you cache the value and only call this once.
Trait Implementations§
source§impl<T, I: 'static> Benchmarking for Pallet<T, I>where
T: Config + Config<I>,
impl<T, I: 'static> Benchmarking for Pallet<T, I>where T: Config + Config<I>,
source§fn benchmarks(extra: bool) -> Vec<BenchmarkMetadata>
fn benchmarks(extra: bool) -> Vec<BenchmarkMetadata>
source§fn run_benchmark(
extrinsic: &[u8],
c: &[(BenchmarkParameter, u32)],
whitelist: &[TrackedStorageKey],
verify: bool,
internal_repeats: u32
) -> Result<Vec<BenchmarkResult>, BenchmarkError>
fn run_benchmark( extrinsic: &[u8], c: &[(BenchmarkParameter, u32)], whitelist: &[TrackedStorageKey], verify: bool, internal_repeats: u32 ) -> Result<Vec<BenchmarkResult>, BenchmarkError>
source§impl<T: Config<I>, I: 'static> GetStorageVersion for Pallet<T, I>
impl<T: Config<I>, I: 'static> GetStorageVersion for Pallet<T, I>
source§fn current_storage_version() -> Self::CurrentStorageVersion
fn current_storage_version() -> Self::CurrentStorageVersion
source§fn on_chain_storage_version() -> StorageVersion
fn on_chain_storage_version() -> StorageVersion
source§impl<T: Config<I>, I: 'static> Hooks<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T, I>
impl<T: Config<I>, I: 'static> Hooks<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T, I>
source§fn on_initialize(n: BlockNumberFor<T>) -> Weight
fn on_initialize(n: BlockNumberFor<T>) -> Weight
source§fn on_finalize(_n: BlockNumber)
fn on_finalize(_n: BlockNumber)
source§fn on_idle(_n: BlockNumber, _remaining_weight: Weight) -> Weight
fn on_idle(_n: BlockNumber, _remaining_weight: Weight) -> Weight
Hooks::on_finalize
). Read moresource§fn on_runtime_upgrade() -> Weight
fn on_runtime_upgrade() -> Weight
source§fn try_state(_n: BlockNumber) -> Result<(), DispatchError>
fn try_state(_n: BlockNumber) -> Result<(), DispatchError>
source§fn pre_upgrade() -> Result<Vec<u8, Global>, DispatchError>
fn pre_upgrade() -> Result<Vec<u8, Global>, DispatchError>
source§fn post_upgrade(_state: Vec<u8, Global>) -> Result<(), DispatchError>
fn post_upgrade(_state: Vec<u8, Global>) -> Result<(), DispatchError>
source§fn offchain_worker(_n: BlockNumber)
fn offchain_worker(_n: BlockNumber)
source§fn integrity_test()
fn integrity_test()
source§impl<T: Config<I>, I: 'static> IntegrityTest for Pallet<T, I>
impl<T: Config<I>, I: 'static> IntegrityTest for Pallet<T, I>
source§impl<T: Config<I>, I: 'static> OffchainWorker<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T, I>
impl<T: Config<I>, I: 'static> OffchainWorker<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T, I>
source§fn offchain_worker(n: BlockNumberFor<T>)
fn offchain_worker(n: BlockNumberFor<T>)
source§impl<T: Config<I>, I: 'static> OnFinalize<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T, I>
impl<T: Config<I>, I: 'static> OnFinalize<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T, I>
source§fn on_finalize(n: BlockNumberFor<T>)
fn on_finalize(n: BlockNumberFor<T>)
Hooks::on_finalize
.source§impl<T: Config<I>, I: 'static> OnGenesis for Pallet<T, I>
impl<T: Config<I>, I: 'static> OnGenesis for Pallet<T, I>
source§fn on_genesis()
fn on_genesis()
source§impl<T: Config<I>, I: 'static> OnIdle<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T, I>
impl<T: Config<I>, I: 'static> OnIdle<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T, I>
source§fn on_idle(n: BlockNumberFor<T>, remaining_weight: Weight) -> Weight
fn on_idle(n: BlockNumberFor<T>, remaining_weight: Weight) -> Weight
Hooks::on_idle
.source§impl<T: Config<I>, I: 'static> OnInitialize<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T, I>
impl<T: Config<I>, I: 'static> OnInitialize<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T, I>
source§fn on_initialize(n: BlockNumberFor<T>) -> Weight
fn on_initialize(n: BlockNumberFor<T>) -> Weight
Hooks::on_initialize
.source§impl<T: Config<I>, I: 'static> OnRuntimeUpgrade for Pallet<T, I>
impl<T: Config<I>, I: 'static> OnRuntimeUpgrade for Pallet<T, I>
source§fn on_runtime_upgrade() -> Weight
fn on_runtime_upgrade() -> Weight
source§fn pre_upgrade() -> Result<Vec<u8>, TryRuntimeError>
fn pre_upgrade() -> Result<Vec<u8>, TryRuntimeError>
Hooks::pre_upgrade
.source§fn post_upgrade(state: Vec<u8>) -> Result<(), TryRuntimeError>
fn post_upgrade(state: Vec<u8>) -> Result<(), TryRuntimeError>
Hooks::post_upgrade
.source§fn try_on_runtime_upgrade(checks: bool) -> Result<Weight, DispatchError>
fn try_on_runtime_upgrade(checks: bool) -> Result<Weight, DispatchError>
pre_upgrade
->
on_runtime_upgrade
-> post_upgrade
hooks for a migration. Read moresource§impl<T: Config<I>, I: 'static> OnUnbalanced<<<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::NegativeImbalance> for Pallet<T, I>
impl<T: Config<I>, I: 'static> OnUnbalanced<<<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::NegativeImbalance> for Pallet<T, I>
source§fn on_nonzero_unbalanced(
amount: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::NegativeImbalance
)
fn on_nonzero_unbalanced( amount: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::NegativeImbalance )
on_unbalanced
.source§fn on_unbalanceds<B>(amounts: impl Iterator<Item = Imbalance>)where
Imbalance: Imbalance<B>,
fn on_unbalanceds<B>(amounts: impl Iterator<Item = Imbalance>)where Imbalance: Imbalance<B>,
source§fn on_unbalanced(amount: Imbalance)
fn on_unbalanced(amount: Imbalance)
source§impl<T: Config<I>, I: 'static> PalletInfoAccess for Pallet<T, I>
impl<T: Config<I>, I: 'static> PalletInfoAccess for Pallet<T, I>
source§fn module_name() -> &'static str
fn module_name() -> &'static str
source§fn crate_version() -> CrateVersion
fn crate_version() -> CrateVersion
source§impl<T: Config<I>, I: 'static> PalletsInfoAccess for Pallet<T, I>
impl<T: Config<I>, I: 'static> PalletsInfoAccess for Pallet<T, I>
source§impl<T, I> PartialEq<Pallet<T, I>> for Pallet<T, I>
impl<T, I> PartialEq<Pallet<T, I>> for Pallet<T, I>
source§impl<T: Config<I>, I: 'static> StorageInfoTrait for Pallet<T, I>
impl<T: Config<I>, I: 'static> StorageInfoTrait for Pallet<T, I>
fn storage_info() -> Vec<StorageInfo>
source§impl<T: Config<I>, I: 'static> TryState<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T, I>
impl<T: Config<I>, I: 'static> TryState<<<<T as Config>::Block as HeaderProvider>::HeaderT as Header>::Number> for Pallet<T, I>
source§fn try_state(
n: BlockNumberFor<T>,
_s: TryStateSelect
) -> Result<(), TryRuntimeError>
fn try_state( n: BlockNumberFor<T>, _s: TryStateSelect ) -> Result<(), TryRuntimeError>
source§impl<T: Config<I>, I: 'static> WhitelistedStorageKeys for Pallet<T, I>
impl<T: Config<I>, I: 'static> WhitelistedStorageKeys for Pallet<T, I>
source§fn whitelisted_storage_keys() -> Vec<TrackedStorageKey>
fn whitelisted_storage_keys() -> Vec<TrackedStorageKey>
Vec<TrackedStorageKey>
indicating the storage keys that
should be whitelisted during benchmarking. This means that those keys
will be excluded from the benchmarking performance calculation.impl<T, I> Eq for Pallet<T, I>
Auto Trait Implementations§
impl<T, I> RefUnwindSafe for Pallet<T, I>where I: RefUnwindSafe, T: RefUnwindSafe,
impl<T, I> Send for Pallet<T, I>where I: Send, T: Send,
impl<T, I> Sync for Pallet<T, I>where I: Sync, T: Sync,
impl<T, I> Unpin for Pallet<T, I>where I: Unpin, T: Unpin,
impl<T, I> UnwindSafe for Pallet<T, I>where I: UnwindSafe, T: UnwindSafe,
Blanket Implementations§
source§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
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> 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> 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
.