pub enum QueryAdmissionPlanShape {
ScalarRead,
GroupedAggregate,
Delete,
}Expand description
Coarse scalar/grouped statement shape used by read admission.
Variants§
ScalarRead
Scalar read shape, including projection-only and global-aggregate scalar plans.
GroupedAggregate
Grouped aggregate read shape.
Delete
Delete shape surfaced only for diagnostics; public read lanes must not execute it.
Implementations§
Trait Implementations§
Source§impl Clone for QueryAdmissionPlanShape
impl Clone for QueryAdmissionPlanShape
Source§fn clone(&self) -> QueryAdmissionPlanShape
fn clone(&self) -> QueryAdmissionPlanShape
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for QueryAdmissionPlanShape
Source§impl Debug for QueryAdmissionPlanShape
impl Debug for QueryAdmissionPlanShape
impl Eq for QueryAdmissionPlanShape
Source§impl PartialEq for QueryAdmissionPlanShape
impl PartialEq for QueryAdmissionPlanShape
Source§fn eq(&self, other: &QueryAdmissionPlanShape) -> bool
fn eq(&self, other: &QueryAdmissionPlanShape) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for QueryAdmissionPlanShape
Auto Trait Implementations§
impl Freeze for QueryAdmissionPlanShape
impl RefUnwindSafe for QueryAdmissionPlanShape
impl Send for QueryAdmissionPlanShape
impl Sync for QueryAdmissionPlanShape
impl Unpin for QueryAdmissionPlanShape
impl UnsafeUnpin for QueryAdmissionPlanShape
impl UnwindSafe for QueryAdmissionPlanShape
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