pub struct TableFromRows {
pub this: Box<Expression>,
pub alias: Option<String>,
pub joins: Vec<Expression>,
pub pivots: Option<Box<Expression>>,
pub sample: Option<Box<Expression>>,
}Expand description
TableFromRows
Fields§
§this: Box<Expression>§alias: Option<String>§joins: Vec<Expression>§pivots: Option<Box<Expression>>§sample: Option<Box<Expression>>Trait Implementations§
Source§impl Clone for TableFromRows
impl Clone for TableFromRows
Source§fn clone(&self) -> TableFromRows
fn clone(&self) -> TableFromRows
Returns a duplicate of the value. Read more
1.0.0 · 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 TableFromRows
impl Debug for TableFromRows
Source§impl<'de> Deserialize<'de> for TableFromRows
impl<'de> Deserialize<'de> for TableFromRows
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
Source§impl PartialEq for TableFromRows
impl PartialEq for TableFromRows
Source§impl Serialize for TableFromRows
impl Serialize for TableFromRows
impl StructuralPartialEq for TableFromRows
Auto Trait Implementations§
impl Freeze for TableFromRows
impl RefUnwindSafe for TableFromRows
impl Send for TableFromRows
impl Sync for TableFromRows
impl Unpin for TableFromRows
impl UnwindSafe for TableFromRows
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