pub trait RecordExt {
    // Required method
    fn validate<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<(), KeystoreError>> + Send + 'async_trait>>
       where 'life0: 'async_trait,
             Self: 'async_trait;
}
Expand description

Extension trait to keep zome types minimal

Required Methods§

source

fn validate<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<(), KeystoreError>> + Send + 'async_trait>>
where 'life0: 'async_trait, Self: 'async_trait,

Validate the signature matches the data

Implementors§