pub struct Trigger {
pub name: String,
pub table_name: String,
pub event: TriggerEvent,
pub body_sql: String,
pub old_alias: Option<String>,
pub new_alias: Option<String>,
}Fields§
§name: String§table_name: String§event: TriggerEvent§body_sql: String§old_alias: Option<String>§new_alias: Option<String>Implementations§
Trait Implementations§
impl Eq for Trigger
impl StructuralPartialEq for Trigger
Auto Trait Implementations§
impl Freeze for Trigger
impl RefUnwindSafe for Trigger
impl Send for Trigger
impl Sync for Trigger
impl Unpin for Trigger
impl UnsafeUnpin for Trigger
impl UnwindSafe for Trigger
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