pub struct Other<'a> {
pub join_on: &'a str,
pub group_by: &'a str,
pub having: &'a str,
}Fields§
§join_on: &'a strjoin on statement section, need to have join on
§Example
"left join class on class.id=student.class_id"group_by: &'a str§having: &'a strAuto Trait Implementations§
impl<'a> Freeze for Other<'a>
impl<'a> RefUnwindSafe for Other<'a>
impl<'a> Send for Other<'a>
impl<'a> Sync for Other<'a>
impl<'a> Unpin for Other<'a>
impl<'a> UnwindSafe for Other<'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