pub struct vtkUnsignedLongLongArray(/* private fields */);Expand description
dynamic, self-adjusting array of unsigned long long
vtkUnsignedLongLongArray is an array of values of type unsigned long long. It provides methods for insertion and retrieval of values and will automatically resize itself to hold new data.
This class should not be used directly, as it only exists on systems where the unsigned long long type is defined. If you need an unsigned 64 bit integer data array, use vtkTypeUInt64Array instead.
Implementations§
Source§impl vtkUnsignedLongLongArray
impl vtkUnsignedLongLongArray
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkUnsignedLongLongArray wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkUnsignedLongLongArray
impl Default for vtkUnsignedLongLongArray
Auto Trait Implementations§
impl Freeze for vtkUnsignedLongLongArray
impl RefUnwindSafe for vtkUnsignedLongLongArray
impl !Send for vtkUnsignedLongLongArray
impl !Sync for vtkUnsignedLongLongArray
impl Unpin for vtkUnsignedLongLongArray
impl UnwindSafe for vtkUnsignedLongLongArray
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