pub struct ForeignKeyQueryResult {
pub constraint_name: String,
pub column_name: String,
pub referenced_table_name: String,
pub referenced_column_name: String,
pub update_rule: String,
pub delete_rule: String,
}
Available on crate features
mysql
and query
only.Fields§
§constraint_name: String
§column_name: String
§referenced_table_name: String
§referenced_column_name: String
§update_rule: String
§delete_rule: String
Trait Implementations§
Source§impl Debug for ForeignKeyQueryResult
impl Debug for ForeignKeyQueryResult
Source§impl Default for ForeignKeyQueryResult
impl Default for ForeignKeyQueryResult
Source§fn default() -> ForeignKeyQueryResult
fn default() -> ForeignKeyQueryResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ForeignKeyQueryResult
impl RefUnwindSafe for ForeignKeyQueryResult
impl Send for ForeignKeyQueryResult
impl Sync for ForeignKeyQueryResult
impl Unpin for ForeignKeyQueryResult
impl UnwindSafe for ForeignKeyQueryResult
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