afia-component 0.0.4

A high-level Rust wrapper for `libafia_component`.
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::ComponentImports;

impl ComponentImports {
    /// Indicate that one of a component's outputs may have changed.
    pub fn output_may_have_changed(&self, output_id: i32) {
        unsafe {
            afia_component_sys::output_may_have_changed(self.component_imports_ptr, output_id)
        }
    }
}