[][src]Trait em_node_agent_client::EnclaveApiMut

pub trait EnclaveApiMut {
    type Error;
    fn get_fortanix_attestation(
        &mut self,
        body: GetFortanixAttestationRequest
    ) -> Result<GetFortanixAttestationResponse, Self::Error>;
fn get_target_info(&mut self) -> Result<TargetInfo, Self::Error>; }

Associated Types

type Error

Loading content...

Required methods

fn get_fortanix_attestation(
    &mut self,
    body: GetFortanixAttestationRequest
) -> Result<GetFortanixAttestationResponse, Self::Error>

Get Fortanix attestation for the application

fn get_target_info(&mut self) -> Result<TargetInfo, Self::Error>

Get Target Info for node provisioning enclave

Loading content...

Implementors

impl<T, E> EnclaveApiMut for T where
    T: EnclaveApi<Error = E>, 
[src]

Loading content...