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