pub enum VectorType {
Generic,
Byte,
}
Expand description
Different vector types
Variants§
Generic
Generic vector, containing elements of any type.
Byte
Byte vector, containing only byte (octet) values.
Auto Trait Implementations§
impl Freeze for VectorType
impl RefUnwindSafe for VectorType
impl Send for VectorType
impl Sync for VectorType
impl Unpin for VectorType
impl UnwindSafe for VectorType
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