pub struct vtkIntArray(/* private fields */);Expand description
dynamic, self-adjusting array of int
vtkIntArray is an array of values of type int. It provides methods for insertion and retrieval of values and will automatically resize itself to hold new data.
The C++ standard does not define the exact size of the int type, so use of this type directly is discouraged. If an array of 32 bit integers is needed, prefer vtkTypeInt32Array to this class.
Implementations§
Source§impl vtkIntArray
impl vtkIntArray
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkIntArray wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkIntArray
impl Default for vtkIntArray
Auto Trait Implementations§
impl Freeze for vtkIntArray
impl RefUnwindSafe for vtkIntArray
impl !Send for vtkIntArray
impl !Sync for vtkIntArray
impl Unpin for vtkIntArray
impl UnwindSafe for vtkIntArray
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