pub struct JoinTableInfo {
pub table_name: String,
pub parent_column: String,
pub related_column: String,
}Expand description
Information about a join table for many-to-many relations.
Fields§
§table_name: StringThe join table name.
parent_column: StringColumn referencing the parent table.
Column referencing the related table.
Trait Implementations§
Source§impl Clone for JoinTableInfo
impl Clone for JoinTableInfo
Source§fn clone(&self) -> JoinTableInfo
fn clone(&self) -> JoinTableInfo
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 JoinTableInfo
impl RefUnwindSafe for JoinTableInfo
impl Send for JoinTableInfo
impl Sync for JoinTableInfo
impl Unpin for JoinTableInfo
impl UnwindSafe for JoinTableInfo
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