pub struct vtkUnsignedIntArray(/* private fields */);Expand description
dynamic, self-adjusting array of unsigned int
vtkUnsignedIntArray is an array of values of type unsigned 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 unsigned int type, so use of this type directly is discouraged. If an array of 32 bit unsigned integers is needed, prefer vtkTypeUInt32Array to this class.
Implementations§
Source§impl vtkUnsignedIntArray
impl vtkUnsignedIntArray
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkUnsignedIntArray wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkUnsignedIntArray
impl Default for vtkUnsignedIntArray
Auto Trait Implementations§
impl Freeze for vtkUnsignedIntArray
impl RefUnwindSafe for vtkUnsignedIntArray
impl !Send for vtkUnsignedIntArray
impl !Sync for vtkUnsignedIntArray
impl Unpin for vtkUnsignedIntArray
impl UnwindSafe for vtkUnsignedIntArray
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