pub struct ManyToOneLoader {
pub foreign_key_value: FilterValue,
pub table: String,
pub primary_key: String,
}Expand description
Configuration for a many-to-one relation loader.
Fields§
§foreign_key_value: FilterValueThe foreign key value.
table: StringThe related table name.
primary_key: StringThe primary key column in the related table.
Implementations§
Trait Implementations§
Source§impl Clone for ManyToOneLoader
impl Clone for ManyToOneLoader
Source§fn clone(&self) -> ManyToOneLoader
fn clone(&self) -> ManyToOneLoader
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 moreAuto Trait Implementations§
impl Freeze for ManyToOneLoader
impl RefUnwindSafe for ManyToOneLoader
impl Send for ManyToOneLoader
impl Sync for ManyToOneLoader
impl Unpin for ManyToOneLoader
impl UnwindSafe for ManyToOneLoader
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