pub struct SqlJoinReadStatement<'a> {
pub statement: SqlStatement,
pub base_selection: Vec<(&'a str, &'a DbField)>,
pub joins: Vec<NativeJoin<'a>>,
}Expand description
A native join read statement and borrowed metadata needed for row grouping.
Fields§
§statement: SqlStatement§base_selection: Vec<(&'a str, &'a DbField)>§joins: Vec<NativeJoin<'a>>Trait Implementations§
Source§impl<'a> Clone for SqlJoinReadStatement<'a>
impl<'a> Clone for SqlJoinReadStatement<'a>
Source§fn clone(&self) -> SqlJoinReadStatement<'a>
fn clone(&self) -> SqlJoinReadStatement<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for SqlJoinReadStatement<'a>
impl<'a> RefUnwindSafe for SqlJoinReadStatement<'a>
impl<'a> Send for SqlJoinReadStatement<'a>
impl<'a> Sync for SqlJoinReadStatement<'a>
impl<'a> Unpin for SqlJoinReadStatement<'a>
impl<'a> UnsafeUnpin for SqlJoinReadStatement<'a>
impl<'a> UnwindSafe for SqlJoinReadStatement<'a>
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