pub trait AncillarySigner: Sync + Send {
// Required method
fn compute_ancillary_manifest_signature<'life0, 'life1, 'async_trait>(
&'life0 self,
manifest: &'life1 AncillaryFilesManifest,
) -> Pin<Box<dyn Future<Output = StdResult<ManifestSignature>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}
Expand description
Define how to sign the ancillary manifest.
Required Methods§
Sourcefn compute_ancillary_manifest_signature<'life0, 'life1, 'async_trait>(
&'life0 self,
manifest: &'life1 AncillaryFilesManifest,
) -> Pin<Box<dyn Future<Output = StdResult<ManifestSignature>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn compute_ancillary_manifest_signature<'life0, 'life1, 'async_trait>(
&'life0 self,
manifest: &'life1 AncillaryFilesManifest,
) -> Pin<Box<dyn Future<Output = StdResult<ManifestSignature>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Compute the signature of the ancillary manifest.