Struct rorm_declaration::imr::ForeignKey
source · pub struct ForeignKey {
pub table_name: String,
pub column_name: String,
pub on_delete: ReferentialAction,
pub on_update: ReferentialAction,
}
Expand description
Represents a foreign key
Fields
table_name: String
Name of the table that should be referenced
column_name: String
Name of the column that should be referenced
on_delete: ReferentialAction
Action to be used in case of on delete
on_update: ReferentialAction
Action to be used in case of an update
Trait Implementations
sourceimpl Clone for ForeignKey
impl Clone for ForeignKey
sourcefn clone(&self) -> ForeignKey
fn clone(&self) -> ForeignKey
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ForeignKey
impl Debug for ForeignKey
sourceimpl Default for ForeignKey
impl Default for ForeignKey
sourceimpl<'de> Deserialize<'de> for ForeignKey
impl<'de> Deserialize<'de> for ForeignKey
sourcefn 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
sourceimpl Hash for ForeignKey
impl Hash for ForeignKey
sourceimpl PartialEq<ForeignKey> for ForeignKey
impl PartialEq<ForeignKey> for ForeignKey
sourcefn eq(&self, other: &ForeignKey) -> bool
fn eq(&self, other: &ForeignKey) -> bool
sourceimpl Serialize for ForeignKey
impl Serialize for ForeignKey
impl Eq for ForeignKey
impl StructuralEq for ForeignKey
impl StructuralPartialEq for ForeignKey
Auto Trait Implementations
impl RefUnwindSafe for ForeignKey
impl Send for ForeignKey
impl Sync for ForeignKey
impl Unpin for ForeignKey
impl UnwindSafe for ForeignKey
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more