in optee-utee/src/tee_parameter.rs [99:109]
fn get_type(&self) -> ParamType {
match &self.content {
ParamContent::None => ParamType::None,
ParamContent::MemrefInput { .. } => ParamType::MemrefInput,
ParamContent::MemrefOutput { .. } => ParamType::MemrefOutput,
ParamContent::MemrefInout { .. } => ParamType::MemrefInout,
ParamContent::ValueInput { .. } => ParamType::ValueInput,
ParamContent::ValueOutput { .. } => ParamType::ValueOutput,
ParamContent::ValueInout { .. } => ParamType::ValueInout,
}
}