optee_teecType Alias Result
Source 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()?;
}
enum Result<T> {
Ok(T),
Err(Error),
}
Contains the success value