pub struct NativeJoin<'a> {
pub model: String,
pub table: &'a DbTable,
pub selection: Vec<(&'a str, &'a DbField)>,
pub from: String,
pub to: String,
pub relation: JoinRelation,
pub limit: usize,
}Fields§
§model: String§table: &'a DbTable§selection: Vec<(&'a str, &'a DbField)>§from: String§to: String§relation: JoinRelation§limit: usizeTrait Implementations§
Source§impl<'a> Clone for NativeJoin<'a>
impl<'a> Clone for NativeJoin<'a>
Source§fn clone(&self) -> NativeJoin<'a>
fn clone(&self) -> NativeJoin<'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 NativeJoin<'a>
impl<'a> RefUnwindSafe for NativeJoin<'a>
impl<'a> Send for NativeJoin<'a>
impl<'a> Sync for NativeJoin<'a>
impl<'a> Unpin for NativeJoin<'a>
impl<'a> UnsafeUnpin for NativeJoin<'a>
impl<'a> UnwindSafe for NativeJoin<'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