optee_teec

Trait Param

Source
pub trait Param {
    // Required methods
    fn into_raw(&mut self) -> TEEC_Parameter;
    fn param_type(&self) -> ParamType;
    fn from_raw(raw: TEEC_Parameter, param_type: ParamType) -> Self;
}

Required Methods§

Source

fn into_raw(&mut self) -> TEEC_Parameter

Source

fn param_type(&self) -> ParamType

Source

fn from_raw(raw: TEEC_Parameter, param_type: ParamType) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§