pub enum LimitInputPlan {
Project(ProjectPlan),
Values(ValuesPlan),
SelectOrderBy(SelectOrderByPlan),
ValuesOrderBy(ValuesOrderByPlan),
Distinct(DistinctPlan),
Offset(OffsetPlan),
}Variants§
Project(ProjectPlan)
Values(ValuesPlan)
SelectOrderBy(SelectOrderByPlan)
ValuesOrderBy(ValuesOrderByPlan)
Distinct(DistinctPlan)
Offset(OffsetPlan)
Trait Implementations§
Source§impl Clone for LimitInputPlan
impl Clone for LimitInputPlan
Source§fn clone(&self) -> LimitInputPlan
fn clone(&self) -> LimitInputPlan
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 moreSource§impl Debug for LimitInputPlan
impl Debug for LimitInputPlan
Source§impl<'de> Deserialize<'de> for LimitInputPlan
impl<'de> Deserialize<'de> for LimitInputPlan
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for LimitInputPlan
Source§impl Hash for LimitInputPlan
impl Hash for LimitInputPlan
Source§impl PartialEq for LimitInputPlan
impl PartialEq for LimitInputPlan
Source§impl Serialize for LimitInputPlan
impl Serialize for LimitInputPlan
impl StructuralPartialEq for LimitInputPlan
Auto Trait Implementations§
impl Freeze for LimitInputPlan
impl RefUnwindSafe for LimitInputPlan
impl Send for LimitInputPlan
impl Sync for LimitInputPlan
impl Unpin for LimitInputPlan
impl UnsafeUnpin for LimitInputPlan
impl UnwindSafe for LimitInputPlan
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more