Type Definition optee_teec::Result[][src]

pub type Result<T> = Result<T, Error>;
Expand description

A specialized Result type for TEE operations.

Examples

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