#[non_exhaustive]pub struct SourceSqlChange {
pub sql_code: String,
/* private fields */
}Expand description
Options to configure rule type SourceSqlChange. The rule is used to alter the sql code for database entities.
The rule filter field can refer to one entity.
The rule scope can be: StoredProcedure, Function, Trigger, View
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.sql_code: StringRequired. Sql code for source (stored procedure, function, trigger or view)
Implementations§
Trait Implementations§
Source§impl Clone for SourceSqlChange
impl Clone for SourceSqlChange
Source§fn clone(&self) -> SourceSqlChange
fn clone(&self) -> SourceSqlChange
Returns a duplicate of the value. Read more
1.0.0 · 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 SourceSqlChange
impl Debug for SourceSqlChange
Source§impl Default for SourceSqlChange
impl Default for SourceSqlChange
Source§fn default() -> SourceSqlChange
fn default() -> SourceSqlChange
Returns the “default value” for a type. Read more
Source§impl Message for SourceSqlChange
impl Message for SourceSqlChange
Source§impl PartialEq for SourceSqlChange
impl PartialEq for SourceSqlChange
impl StructuralPartialEq for SourceSqlChange
Auto Trait Implementations§
impl Freeze for SourceSqlChange
impl RefUnwindSafe for SourceSqlChange
impl Send for SourceSqlChange
impl Sync for SourceSqlChange
impl Unpin for SourceSqlChange
impl UnwindSafe for SourceSqlChange
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