pub struct vtkBitArray(/* private fields */);Expand description
dynamic, self-adjusting array of bits
vtkBitArray is an array of bits (0/1 data value). The array is packed so that each byte stores eight bits. vtkBitArray provides methods for insertion and retrieval of bits, and will automatically resize itself to hold new data.
WARNING This class is not thread-safe during write access
Implementations§
Source§impl vtkBitArray
impl vtkBitArray
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkBitArray wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkBitArray
impl Default for vtkBitArray
Auto Trait Implementations§
impl Freeze for vtkBitArray
impl RefUnwindSafe for vtkBitArray
impl !Send for vtkBitArray
impl !Sync for vtkBitArray
impl Unpin for vtkBitArray
impl UnwindSafe for vtkBitArray
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