pub struct Ed25519Authenticator {
pub public_key: Vec<u8>,
pub signature: Vec<u8>,
}Expand description
Ed25519 authenticator helper.
Fields§
§public_key: Vec<u8>The public key.
signature: Vec<u8>The signature.
Implementations§
Trait Implementations§
Source§impl Clone for Ed25519Authenticator
impl Clone for Ed25519Authenticator
Source§fn clone(&self) -> Ed25519Authenticator
fn clone(&self) -> Ed25519Authenticator
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 Ed25519Authenticator
impl Debug for Ed25519Authenticator
Source§impl From<Ed25519Authenticator> for AccountAuthenticator
impl From<Ed25519Authenticator> for AccountAuthenticator
Source§fn from(auth: Ed25519Authenticator) -> Self
fn from(auth: Ed25519Authenticator) -> Self
Converts to this type from the input type.
Source§impl From<Ed25519Authenticator> for TransactionAuthenticator
impl From<Ed25519Authenticator> for TransactionAuthenticator
Source§fn from(auth: Ed25519Authenticator) -> Self
fn from(auth: Ed25519Authenticator) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Ed25519Authenticator
impl PartialEq for Ed25519Authenticator
impl Eq for Ed25519Authenticator
impl StructuralPartialEq for Ed25519Authenticator
Auto Trait Implementations§
impl Freeze for Ed25519Authenticator
impl RefUnwindSafe for Ed25519Authenticator
impl Send for Ed25519Authenticator
impl Sync for Ed25519Authenticator
impl Unpin for Ed25519Authenticator
impl UnwindSafe for Ed25519Authenticator
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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
Compare self to
key and return true if they are equal.