pub enum Bound {
Min,
Max,
Val(OwnedValue),
}Expand description
A scan-start cell: a concrete value or a type-extreme sentinel that sorts
below/above every real value (including Null, the lowest real value).
Mirrors JS Bound = Value | minValue | maxValue (memory-source.ts:967). The
spike uses one owned form (the production Bound<'a>/OwnedBound split is the
zero-copy concern of Step 2).
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Bound
impl RefUnwindSafe for Bound
impl Send for Bound
impl Sync for Bound
impl Unpin for Bound
impl UnsafeUnpin for Bound
impl UnwindSafe for Bound
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