pub struct AccountSelector {
pub public_only: bool,
pub chain_key: Option<Address>,
pub offchain_key: Option<OffchainPublicKey>,
}Expand description
Selector for on-chain node accounts.
Fields§
§public_only: boolSelects accounts that announced with publicly routable multi-addresses.
chain_key: Option<Address>Selects accounts bound with the given chain key.
offchain_key: Option<OffchainPublicKey>Selects accounts bound with the given off-chain key.
Implementations§
Source§impl AccountSelector
impl AccountSelector
Sourcepub fn with_public_only(self, public_only: bool) -> Self
pub fn with_public_only(self, public_only: bool) -> Self
Selects only accounts that announced with publicly routable multi-addresses.
Sourcepub fn with_chain_key(self, chain_key: Address) -> Self
pub fn with_chain_key(self, chain_key: Address) -> Self
Selects accounts bound with the given chain key.
Sourcepub fn with_offchain_key(self, offchain_key: OffchainPublicKey) -> Self
pub fn with_offchain_key(self, offchain_key: OffchainPublicKey) -> Self
Selects accounts bound with the given off-chain key.
Sourcepub fn satisfies(&self, account: &AccountEntry) -> bool
pub fn satisfies(&self, account: &AccountEntry) -> bool
Checks if the given account satisfies the selector.
Trait Implementations§
Source§impl Clone for AccountSelector
impl Clone for AccountSelector
Source§fn clone(&self) -> AccountSelector
fn clone(&self) -> AccountSelector
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AccountSelector
impl Debug for AccountSelector
Source§impl Default for AccountSelector
impl Default for AccountSelector
Source§fn default() -> AccountSelector
fn default() -> AccountSelector
Returns the “default value” for a type. Read more
Source§impl PartialEq for AccountSelector
impl PartialEq for AccountSelector
impl Eq for AccountSelector
impl StructuralPartialEq for AccountSelector
Auto Trait Implementations§
impl Freeze for AccountSelector
impl RefUnwindSafe for AccountSelector
impl Send for AccountSelector
impl Sync for AccountSelector
impl Unpin for AccountSelector
impl UnwindSafe for AccountSelector
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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§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
Compare self to
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
Checks if this value is equivalent to the given key. Read more
§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>
Converts
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>
Converts
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