pub enum InListSet {
Int(BTreeSet<i64>),
Text(BTreeSet<String>),
}Expand description
v7.30.2 (mailrs round-25) - canonicalised membership set for a
large all-literal IN list. Integer literals canonicalise to
i64 (cross-width Int = BigInt stays correct); string literals
stay verbatim. Mixed or exotic families are not eligible and
keep the linear apply_binary scan.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for InListSet
impl RefUnwindSafe for InListSet
impl Send for InListSet
impl Sync for InListSet
impl Unpin for InListSet
impl UnsafeUnpin for InListSet
impl UnwindSafe for InListSet
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