pub struct vtkLongLongArray(/* private fields */);Expand description
dynamic, self-adjusting array of long long
vtkLongLongArray is an array of values of type 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 long long type is defined. If you need a 64 bit integer data array, use vtkTypeInt64Array instead.
Implementations§
Source§impl vtkLongLongArray
impl vtkLongLongArray
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkLongLongArray wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkLongLongArray
impl Default for vtkLongLongArray
Auto Trait Implementations§
impl Freeze for vtkLongLongArray
impl RefUnwindSafe for vtkLongLongArray
impl !Send for vtkLongLongArray
impl !Sync for vtkLongLongArray
impl Unpin for vtkLongLongArray
impl UnwindSafe for vtkLongLongArray
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