pub struct ForeignKeySchema {
pub columns: Vec<String>,
pub ref_table: String,
pub ref_columns: Vec<String>,
pub on_delete: ForeignKeyAction,
}Expand description
A recorded foreign key and its delete action.
Fields§
§columns: Vec<String>§ref_table: String§ref_columns: Vec<String>§on_delete: ForeignKeyActionTrait Implementations§
Source§impl Clone for ForeignKeySchema
impl Clone for ForeignKeySchema
Source§fn clone(&self) -> ForeignKeySchema
fn clone(&self) -> ForeignKeySchema
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 moreSource§impl Debug for ForeignKeySchema
impl Debug for ForeignKeySchema
Source§impl<'de> Deserialize<'de> for ForeignKeySchema
impl<'de> Deserialize<'de> for ForeignKeySchema
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ForeignKeySchema
impl PartialEq for ForeignKeySchema
Source§impl Serialize for ForeignKeySchema
impl Serialize for ForeignKeySchema
impl StructuralPartialEq for ForeignKeySchema
Auto Trait Implementations§
impl Freeze for ForeignKeySchema
impl RefUnwindSafe for ForeignKeySchema
impl Send for ForeignKeySchema
impl Sync for ForeignKeySchema
impl Unpin for ForeignKeySchema
impl UnsafeUnpin for ForeignKeySchema
impl UnwindSafe for ForeignKeySchema
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