Struct sp_runtime::testing::UintAuthorityId [−][src]
pub struct UintAuthorityId(pub u64);
A dummy type which can be used instead of regular cryptographic primitives.
- Wraps a
u64
AccountId
and is able toIdentifyAccount
. - Can be converted to any
Public
key. - Implements
RuntimeAppPublic
so it can be used instead of regular application-specific crypto.
Implementations
impl UintAuthorityId
[src]
impl UintAuthorityId
[src]pub fn to_public_key<T: Public>(&self) -> T
[src]
Convert this authority id into a public key.
impl UintAuthorityId
[src]
impl UintAuthorityId
[src]pub fn set_all_keys<T: Into<UintAuthorityId>>(keys: impl IntoIterator<Item = T>)
[src]
Set the list of keys returned by the runtime call for all keys of that type.
Trait Implementations
impl BoundToRuntimeAppPublic for UintAuthorityId
[src]
impl BoundToRuntimeAppPublic for UintAuthorityId
[src]type Public = Self
The RuntimeAppPublic
this type is bound to.
impl Clone for UintAuthorityId
[src]
impl Clone for UintAuthorityId
[src]fn clone(&self) -> UintAuthorityId
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl CryptoType for UintAuthorityId
[src]
impl CryptoType for UintAuthorityId
[src]impl Decode for UintAuthorityId
[src]
impl Decode for UintAuthorityId
[src]impl Default for UintAuthorityId
[src]
impl Default for UintAuthorityId
[src]fn default() -> UintAuthorityId
[src]
impl<'de> Deserialize<'de> for UintAuthorityId
[src]
impl<'de> Deserialize<'de> for UintAuthorityId
[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl Encode for UintAuthorityId
[src]
impl Encode for UintAuthorityId
[src]impl From<UintAuthorityId> for u64
[src]
impl From<UintAuthorityId> for u64
[src]fn from(id: UintAuthorityId) -> u64
[src]
impl Hash for UintAuthorityId
[src]
impl Hash for UintAuthorityId
[src]impl IdentifyAccount for UintAuthorityId
[src]
impl IdentifyAccount for UintAuthorityId
[src]type AccountId = u64
The account ID that this can be transformed into.
fn into_account(self) -> Self::AccountId
[src]
impl OpaqueKeys for UintAuthorityId
[src]
impl OpaqueKeys for UintAuthorityId
[src]type KeyTypeIdProviders = ()
Types bound to this opaque keys that provide the key type ids returned.
fn key_ids() -> &'static [KeyTypeId]ⓘ
[src]
fn get_raw(&self, _: KeyTypeId) -> &[u8]ⓘ
[src]
fn get<T: Decode>(&self, _: KeyTypeId) -> Option<T>
[src]
fn ownership_proof_is_valid(&self, _proof: &[u8]) -> bool
[src]
impl Ord for UintAuthorityId
[src]
impl Ord for UintAuthorityId
[src]impl PartialEq<UintAuthorityId> for UintAuthorityId
[src]
impl PartialEq<UintAuthorityId> for UintAuthorityId
[src]fn eq(&self, other: &UintAuthorityId) -> bool
[src]
fn ne(&self, other: &UintAuthorityId) -> bool
[src]
impl PartialOrd<UintAuthorityId> for UintAuthorityId
[src]
impl PartialOrd<UintAuthorityId> for UintAuthorityId
[src]fn partial_cmp(&self, other: &UintAuthorityId) -> Option<Ordering>
[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
pub fn lt(&self, other: &Rhs) -> bool#[must_use]pub fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
pub fn le(&self, other: &Rhs) -> bool#[must_use]pub fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
pub fn gt(&self, other: &Rhs) -> bool#[must_use]pub fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
pub fn ge(&self, other: &Rhs) -> boolimpl RuntimeAppPublic for UintAuthorityId
[src]
impl RuntimeAppPublic for UintAuthorityId
[src]const ID: KeyTypeId
[src]
const CRYPTO_ID: CryptoTypeId
[src]
type Signature = TestSignature
The signature that will be generated when signing with the corresponding private key.
fn all() -> Vec<Self>
[src]
fn generate_pair(_: Option<Vec<u8>>) -> Self
[src]
fn sign<M: AsRef<[u8]>>(&self, msg: &M) -> Option<Self::Signature>
[src]
fn verify<M: AsRef<[u8]>>(&self, msg: &M, signature: &Self::Signature) -> bool
[src]
fn to_raw_vec(&self) -> Vec<u8>
[src]
impl Serialize for UintAuthorityId
[src]
impl Serialize for UintAuthorityId
[src]impl EncodeLike<UintAuthorityId> for UintAuthorityId
[src]
impl Eq for UintAuthorityId
[src]
impl StructuralEq for UintAuthorityId
[src]
impl StructuralPartialEq for UintAuthorityId
[src]
Auto Trait Implementations
impl RefUnwindSafe for UintAuthorityId
impl Send for UintAuthorityId
impl Sync for UintAuthorityId
impl Unpin for UintAuthorityId
impl UnwindSafe for UintAuthorityId
Blanket Implementations
impl<T, U> AsByteSlice<T> for U where
T: ToByteSlice,
U: AsRef<[T]> + ?Sized,
[src]
impl<T, U> AsByteSlice<T> for U where
T: ToByteSlice,
U: AsRef<[T]> + ?Sized,
[src]impl<U> AsSliceOf for U where
U: AsRef<[u8]> + ?Sized,
[src]
impl<U> AsSliceOf for U where
U: AsRef<[u8]> + ?Sized,
[src]pub fn as_slice_of<T>(&self) -> Result<&[T], Error> where
T: FromByteSlice,
[src]
T: FromByteSlice,
impl<T> CallHasher for T where
T: Hash,
[src]
impl<T> CallHasher for T where
T: Hash,
[src]impl<T> CheckedConversion for T
[src]
impl<T> CheckedConversion for T
[src]fn checked_from<T>(t: T) -> Option<Self> where
Self: TryFrom<T>,
[src]
Self: TryFrom<T>,
fn checked_into<T>(self) -> Option<T> where
Self: TryInto<T>,
[src]
Self: TryInto<T>,
impl<T> DecodeLimit for T where
T: Decode,
[src]
impl<T> DecodeLimit for T where
T: Decode,
[src]impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]pub fn equivalent(&self, key: &K) -> bool
[src]
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]impl<T> SaturatedConversion for T
[src]
impl<T> SaturatedConversion for T
[src]pub fn saturated_from<T>(t: T) -> Self where
Self: UniqueSaturatedFrom<T>,
[src]
Self: UniqueSaturatedFrom<T>,
pub fn saturated_into<T>(self) -> T where
Self: UniqueSaturatedInto<T>,
[src]
Self: UniqueSaturatedInto<T>,
impl<T> ToHex for T where
T: AsRef<[u8]>,
[src]
impl<T> ToHex for T where
T: AsRef<[u8]>,
[src]pub fn encode_hex<U>(&self) -> U where
U: FromIterator<char>,
[src]
U: FromIterator<char>,
pub fn encode_hex_upper<U>(&self) -> U where
U: FromIterator<char>,
[src]
U: FromIterator<char>,
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]pub fn unchecked_into(self) -> T
[src]
impl<T, S> UniqueSaturatedInto<T> for S where
T: Bounded,
S: TryInto<T>,
[src]
impl<T, S> UniqueSaturatedInto<T> for S where
T: Bounded,
S: TryInto<T>,
[src]pub fn unique_saturated_into(self) -> T
[src]
impl<S> Codec for S where
S: Decode + Encode,
[src]
S: Decode + Encode,
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
T: Encode,
[src]
T: Encode,
impl<'_, T> EncodeLike<&'_ T> for T where
T: Encode,
[src]
T: Encode,
impl<'_, T> EncodeLike<&'_ mut T> for T where
T: Encode,
[src]
T: Encode,
impl<T> EncodeLike<Arc<T>> for T where
T: Encode,
[src]
T: Encode,
impl<T> EncodeLike<Box<T, Global>> for T where
T: Encode,
[src]
T: Encode,
impl<'a, T> EncodeLike<Cow<'a, T>> for T where
T: ToOwned + Encode,
[src]
T: ToOwned + Encode,
impl<T> EncodeLike<Rc<T>> for T where
T: Encode,
[src]
T: Encode,
impl<S> FullCodec for S where
S: Decode + FullEncode,
[src]
S: Decode + FullEncode,
impl<S> FullEncode for S where
S: Encode + EncodeLike<S>,
[src]
S: Encode + EncodeLike<S>,
impl<T> MaybeDebug for T where
T: Debug,
[src]
T: Debug,
impl<T> MaybeDebug for T where
T: Debug,
[src]
T: Debug,
impl<T> MaybeHash for T where
T: Hash,
[src]
T: Hash,
impl<T> MaybeHash for T where
T: Hash,
[src]
T: Hash,
impl<T> MaybeRefUnwindSafe for T where
T: RefUnwindSafe,
[src]
T: RefUnwindSafe,
impl<T> MaybeSerialize for T where
T: Serialize,
[src]
T: Serialize,
impl<T> MaybeSerializeDeserialize for T where
T: DeserializeOwned + Serialize,
[src]
T: DeserializeOwned + Serialize,
impl<T> Member for T where
T: 'static + Send + Sync + Debug + Eq + PartialEq<T> + Clone,
[src]
T: 'static + Send + Sync + Debug + Eq + PartialEq<T> + Clone,