pub struct RelationMeta {
pub name: &'static str,
pub foreign_key: &'static str,
pub table: &'static str,
pub table_number: Option<u32>,
pub ignore_in_update: bool,
pub ignore_in_insert: bool,
}Fields§
§name: &'static str§foreign_key: &'static str§table: &'static str§table_number: Option<u32>§ignore_in_update: bool§ignore_in_insert: boolAuto Trait Implementations§
impl Freeze for RelationMeta
impl RefUnwindSafe for RelationMeta
impl Send for RelationMeta
impl Sync for RelationMeta
impl Unpin for RelationMeta
impl UnwindSafe for RelationMeta
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