[][src]Type Definition optee_teec::Result

type Result<T> = Result<T, Error>;

A specialized Result type for TEE operations.

Examples

fn main() -> optee_teec::Result<()> {
    let mut ctx = Context::new()?;
}