pub enum Form {
Flat,
Constant,
Sequence,
Dictionary,
}Expand description
Which physical form a vector is in.
An operator asks this once per vector and then takes the path it wants, which is the one branch per vector that the whole design is willing to spend.
Variants§
Flat
One value per position.
Constant
One value, repeated.
Sequence
A start and a step, computed rather than stored.
Dictionary
Codes into a smaller vector of distinct values.
Trait Implementations§
impl Copy for Form
impl Eq for Form
impl StructuralPartialEq for Form
Auto Trait Implementations§
impl Freeze for Form
impl RefUnwindSafe for Form
impl Send for Form
impl Sync for Form
impl Unpin for Form
impl UnsafeUnpin for Form
impl UnwindSafe for Form
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