Trait vtkAlgorithmOutput

Source
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§

Source

fn set_index(&mut self, index: i64)

Source

fn get_index(&self) -> i64

Source

fn get_producer(&self) -> Option<&Algorithm>

Source

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.

Implementors§