(&self, context: Context, arguments_types: Vec<Type>)
| 215 | impl CustomOperation { |
| 216 | #[doc(hidden)] |
| 217 | pub fn instantiate(&self, context: Context, arguments_types: Vec<Type>) -> Result<Graph> { |
| 218 | self.body.instantiate(context, arguments_types) |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | impl PartialEq for CustomOperation { |
no test coverage detected