pub trait vtkAlgorithm: Sealed {
// Provided methods
fn has_executive(&self) -> bool { ... }
fn get_executive(&self) -> Option<&Executive> { ... }
fn set_executive(&mut self, executive: &mut impl vtkExecutive) { ... }
fn set_input_connection(
&mut self,
port: i64,
input: &impl vtkAlgorithmOutput,
) { ... }
}
Expand description
Provided Methods§
fn has_executive(&self) -> bool
fn get_executive(&self) -> Option<&Executive>
fn set_executive(&mut self, executive: &mut impl vtkExecutive)
fn set_input_connection(&mut self, port: i64, input: &impl vtkAlgorithmOutput)
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.