pub struct Select {Show 15 fields
pub ctes: Vec<CommonTableExpression>,
pub recursive: bool,
pub distinct: bool,
pub distinct_on: Vec<Expression>,
pub projection: Vec<Projection>,
pub from: Option<Relation>,
pub filter: Option<Expression>,
pub group_by: Option<Grouping>,
pub having: Option<Expression>,
pub windows: Vec<NamedWindow>,
pub set_operations: Vec<SetArm>,
pub order_by: Vec<OrderBy>,
pub limit: Option<u64>,
pub offset: Option<u64>,
pub expected_result_shape: Vec<ResultColumnDescriptor>,
}Fields§
§ctes: Vec<CommonTableExpression>§recursive: bool§distinct: bool§distinct_on: Vec<Expression>§projection: Vec<Projection>§from: Option<Relation>§filter: Option<Expression>§group_by: Option<Grouping>§having: Option<Expression>§windows: Vec<NamedWindow>§set_operations: Vec<SetArm>§order_by: Vec<OrderBy>§limit: Option<u64>§offset: Option<u64>§expected_result_shape: Vec<ResultColumnDescriptor>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Select
impl<'de> Deserialize<'de> for Select
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 StructuralPartialEq for Select
Auto Trait Implementations§
impl Freeze for Select
impl RefUnwindSafe for Select
impl Send for Select
impl Sync for Select
impl Unpin for Select
impl UnsafeUnpin for Select
impl UnwindSafe for Select
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