pub struct FilterPlan {
pub index_number: i32,
pub index_string: String,
pub arguments: Vec<Value<'static>>,
}Expand description
What filter is told to do.
Fields§
§index_number: i32The plan number best_index chose.
index_string: StringThe plan string best_index chose.
arguments: Vec<Value<'static>>The constraint values, in the argument order best_index assigned.
Trait Implementations§
Source§impl Clone for FilterPlan
impl Clone for FilterPlan
Auto Trait Implementations§
impl Freeze for FilterPlan
impl RefUnwindSafe for FilterPlan
impl Send for FilterPlan
impl Sync for FilterPlan
impl Unpin for FilterPlan
impl UnsafeUnpin for FilterPlan
impl UnwindSafe for FilterPlan
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