pub trait vtkAlgorithmOutput: Sealed {
// Provided methods
fn set_index(&mut self, index: i64) { ... }
fn get_index(&self) -> i64 { ... }
fn get_producer(&self) -> Option<&Algorithm> { ... }
fn set_producer(&mut self, producer: &impl vtkAlgorithm) { ... }
}
Expand description
Provided Methods§
fn set_index(&mut self, index: i64)
fn get_index(&self) -> i64
fn get_producer(&self) -> Option<&Algorithm>
fn set_producer(&mut self, producer: &impl vtkAlgorithm)
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.