pub struct VectorMetadata {
pub path: ObjectPath,
pub kind: VectorKind,
pub length: usize,
pub dimensions: Option<Vec<usize>>,
pub has_names: bool,
}Fields§
§path: ObjectPath§kind: VectorKind§length: usize§dimensions: Option<Vec<usize>>§has_names: boolTrait Implementations§
Source§impl Clone for VectorMetadata
impl Clone for VectorMetadata
Source§fn clone(&self) -> VectorMetadata
fn clone(&self) -> VectorMetadata
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for VectorMetadata
impl RefUnwindSafe for VectorMetadata
impl Send for VectorMetadata
impl Sync for VectorMetadata
impl Unpin for VectorMetadata
impl UnsafeUnpin for VectorMetadata
impl UnwindSafe for VectorMetadata
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