Trait optee_teec::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

Object Safety§

This trait is not object safe.

Implementors§