pub struct vtkInformation(/* private fields */);Expand description
Store vtkAlgorithm input/output information.
vtkInformation represents information and/or data for one input or one output of a vtkAlgorithm. It maps from keys to values of several data types. Instances of this class are collected in vtkInformationVector instances and passed to vtkAlgorithm::ProcessRequest calls. The information and data referenced by the instance on a particular input or output define the request made to the vtkAlgorithm instance.
Implementations§
Source§impl vtkInformation
impl vtkInformation
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkInformation wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkInformation
impl Default for vtkInformation
Auto Trait Implementations§
impl Freeze for vtkInformation
impl RefUnwindSafe for vtkInformation
impl !Send for vtkInformation
impl !Sync for vtkInformation
impl Unpin for vtkInformation
impl UnwindSafe for vtkInformation
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