pub struct vtkGenericCell(/* private fields */);Expand description
provides thread-safe access to cells
vtkGenericCell is a class that provides access to concrete types of cells. It’s main purpose is to allow thread-safe access to cells, supporting the vtkDataSet::GetCell(vtkGenericCell *) method. vtkGenericCell acts like any type of cell, it just dereferences an internal representation. The SetCellType() methods use #define constants; these are defined in the file vtkCellType.h.
@sa vtkCell vtkDataSet
Implementations§
Source§impl vtkGenericCell
impl vtkGenericCell
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkGenericCell wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkGenericCell
impl Default for vtkGenericCell
Auto Trait Implementations§
impl Freeze for vtkGenericCell
impl RefUnwindSafe for vtkGenericCell
impl !Send for vtkGenericCell
impl !Sync for vtkGenericCell
impl Unpin for vtkGenericCell
impl UnwindSafe for vtkGenericCell
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