Struct bison_orm::builder::ForeignKeyBuilder[][src]

pub struct ForeignKeyBuilder { /* fields omitted */ }

The builder for the foreign-key constraint clause.

Implementations

impl ForeignKeyBuilder[src]

pub fn new() -> Self[src]

Create a builder for the foreign-key constraint clause in create/alter table statements.

pub fn symbol(&mut self, symbol: impl Into<String>) -> &mut Self[src]

Sets the symbol of the foreign key.

pub fn column(&mut self, column: impl Into<String>) -> &mut Self[src]

Sets the columns of the foreign key in the source table.

pub fn reference(&mut self, reference: ReferenceBuilder) -> &mut Self[src]

Sets the reference clause.

pub fn on_delete(&mut self, action: impl Into<String>) -> &mut Self[src]

Sets the on delete action for this constraint.

pub fn on_update(&mut self, action: impl Into<String>) -> &mut Self[src]

Sets the on update action for this constraint.

Trait Implementations

impl Builder for ForeignKeyBuilder[src]

impl Default for ForeignKeyBuilder[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> BuilderExt for T where
    T: ChildBuilder, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.