pub struct vtkAlgorithmOutput(/* private fields */);Expand description
Proxy object to connect input/output ports.
vtkAlgorithmOutput is a proxy object returned by the GetOutputPort method of vtkAlgorithm. It may be passed to the SetInputConnection, AddInputConnection, or RemoveInputConnection methods of another vtkAlgorithm to establish a connection between an output and input port. The connection is not stored in the proxy object: it is simply a convenience for creating or removing connections.
Implementations§
Source§impl vtkAlgorithmOutput
impl vtkAlgorithmOutput
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkAlgorithmOutput wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkAlgorithmOutput
impl Default for vtkAlgorithmOutput
Auto Trait Implementations§
impl Freeze for vtkAlgorithmOutput
impl RefUnwindSafe for vtkAlgorithmOutput
impl !Send for vtkAlgorithmOutput
impl !Sync for vtkAlgorithmOutput
impl Unpin for vtkAlgorithmOutput
impl UnwindSafe for vtkAlgorithmOutput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more