pub trait Attestation: Send + Sync {
// Required method
fn attest_labels<'life0, 'async_trait>(
&'life0 self,
args: AttestLabelsRequest,
) -> Pin<Box<dyn Future<Output = Result<AttestLabelsResponse, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}
Expand description
Attestaion interface.
Required Methods§
Sourcefn attest_labels<'life0, 'async_trait>(
&'life0 self,
args: AttestLabelsRequest,
) -> Pin<Box<dyn Future<Output = Result<AttestLabelsResponse, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn attest_labels<'life0, 'async_trait>(
&'life0 self,
args: AttestLabelsRequest,
) -> Pin<Box<dyn Future<Output = Result<AttestLabelsResponse, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Request to host to attest component labels.