Struct sp_runtime::testing::UintAuthorityId[][src]

pub struct UintAuthorityId(pub u64);

A dummy type which can be used instead of regular cryptographic primitives.

  1. Wraps a u64 AccountId and is able to IdentifyAccount.
  2. Can be converted to any Public key.
  3. Implements RuntimeAppPublic so it can be used instead of regular application-specific crypto.

Implementations

impl UintAuthorityId[src]

pub fn to_public_key<T: Public>(&self) -> T[src]

Convert this authority id into a public key.

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 AsRef<[u8]> for UintAuthorityId[src]

impl BoundToRuntimeAppPublic for UintAuthorityId[src]

type Public = Self

The RuntimeAppPublic this type is bound to.

impl Clone for UintAuthorityId[src]

impl CryptoType for UintAuthorityId[src]

type Pair = Dummy

The pair key type of this crypto.

impl Debug for UintAuthorityId[src]

impl Decode for UintAuthorityId[src]

impl Default for UintAuthorityId[src]

impl<'de> Deserialize<'de> for UintAuthorityId[src]

impl Encode for UintAuthorityId[src]

impl EncodeLike<UintAuthorityId> for UintAuthorityId[src]

impl Eq for UintAuthorityId[src]

impl From<u64> for UintAuthorityId[src]

impl Hash for UintAuthorityId[src]

impl IdentifyAccount for UintAuthorityId[src]

type AccountId = u64

The account ID that this can be transformed into.

impl OpaqueKeys for UintAuthorityId[src]

type KeyTypeIdProviders = ()

Types bound to this opaque keys that provide the key type ids returned.

impl Ord for UintAuthorityId[src]

impl PartialEq<UintAuthorityId> for UintAuthorityId[src]

impl PartialOrd<UintAuthorityId> for UintAuthorityId[src]

impl RuntimeAppPublic for UintAuthorityId[src]

type Signature = TestSignature

The signature that will be generated when signing with the corresponding private key.

impl Serialize for UintAuthorityId[src]

impl StructuralEq for UintAuthorityId[src]

impl StructuralPartialEq for UintAuthorityId[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, U> AsByteSlice<T> for U where
    T: ToByteSlice,
    U: AsRef<[T]> + ?Sized

impl<U> AsSliceOf for U where
    U: AsRef<[u8]> + ?Sized

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CallHasher for T where
    T: Hash

impl<T> CheckedConversion for T[src]

impl<T> Clear for T where
    T: PartialEq<T> + Eq + Default
[src]

impl<S> Codec for S where
    S: Encode + Decode
[src]

impl<T> DecodeAll for T where
    T: Decode
[src]

impl<T> DecodeLimit for T where
    T: Decode
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> DynClone for T where
    T: Clone
[src]

impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
    T: Encode
[src]

impl<'_, T> EncodeLike<&'_ T> for T where
    T: Encode
[src]

impl<'_, T> EncodeLike<&'_ mut T> for T where
    T: Encode
[src]

impl<T> EncodeLike<Arc<T>> for T where
    T: Encode
[src]

impl<T> EncodeLike<Box<T, Global>> for T where
    T: Encode
[src]

impl<'a, T> EncodeLike<Cow<'a, T>> for T where
    T: Encode + ToOwned
[src]

impl<T> EncodeLike<Rc<T>> for T where
    T: Encode
[src]

impl<T> From<T> for T[src]

impl<S> FullCodec for S where
    S: Decode + FullEncode
[src]

impl<S> FullEncode for S where
    S: Encode + EncodeLike<S>, 
[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, Outer> IsWrappedBy<Outer> for T where
    T: From<Outer>,
    Outer: AsRef<T> + AsMut<T> + From<T>, 
[src]

pub fn from_ref(outer: &Outer) -> &T[src]

Get a reference to the inner from the outer.

pub fn from_mut(outer: &mut Outer) -> &mut T[src]

Get a mutable reference to the inner from the outer.

impl<T> KeyedVec for T where
    T: Codec
[src]

impl<T> MaybeDebug for T where
    T: Debug

impl<T> MaybeDebug for T where
    T: Debug

impl<T> MaybeHash for T where
    T: Hash
[src]

impl<T> MaybeHash for T where
    T: Hash
[src]

impl<T> MaybeRefUnwindSafe for T where
    T: RefUnwindSafe

impl<T> MaybeSerialize for T where
    T: Serialize
[src]

impl<T> MaybeSerializeDeserialize for T where
    T: DeserializeOwned + Serialize
[src]

impl<T> Member for T where
    T: 'static + Clone + PartialEq<T> + Eq + Send + Sync + Debug
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SaturatedConversion for T[src]

impl<T> ToHex for T where
    T: AsRef<[u8]>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<S, T> UncheckedInto<T> for S where
    T: UncheckedFrom<S>, 
[src]

impl<T, S> UniqueSaturatedInto<T> for S where
    T: Bounded,
    S: TryInto<T>, 
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,