pub trait EnclaveTarget: Sized {
    type Error;

    fn for_self() -> Result<Self, Self::Error>;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors