Skip to content

Commit 00bebf8

Browse files
committed
move
Signed-off-by: Andrew Duffy <[email protected]>
1 parent a2eb260 commit 00bebf8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

vortex-vector/src/binaryview/vector_mut.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,11 @@ use crate::{VectorMutOps, VectorOps};
1616

1717
// Default capacity for new string data buffers of 2MiB.
1818
const BUFFER_CAPACITY: usize = 2 * 1024 * 1024;
19-
/// Mutable variable-length binary vector.
20-
#[derive(Clone, Debug)]
2119

2220
/// A mutable vector of binary view data.
2321
///
2422
/// The immutable equivalent of this type is [`BinaryViewVector`].
23+
#[derive(Clone, Debug)]
2524
pub struct BinaryViewVectorMut<T: BinaryViewType> {
2625
/// Views into the binary data.
2726
views: BufferMut<BinaryView>,

0 commit comments

Comments
 (0)