#[non_exhaustive]pub struct SingleEntityRename {
pub new_name: String,
/* private fields */
}Expand description
Options to configure rule type SingleEntityRename. The rule is used to rename an entity.
The rule filter field can refer to only one entity.
The rule scope can be one of: Database, Schema, Table, Column, Constraint, Index, View, Function, Stored Procedure, Materialized View, Sequence, UDT, Synonym
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.new_name: StringRequired. The new name of the destination entity
Implementations§
Trait Implementations§
Source§impl Clone for SingleEntityRename
impl Clone for SingleEntityRename
Source§fn clone(&self) -> SingleEntityRename
fn clone(&self) -> SingleEntityRename
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 SingleEntityRename
impl Debug for SingleEntityRename
Source§impl Default for SingleEntityRename
impl Default for SingleEntityRename
Source§fn default() -> SingleEntityRename
fn default() -> SingleEntityRename
Returns the “default value” for a type. Read more
Source§impl Message for SingleEntityRename
impl Message for SingleEntityRename
Source§impl PartialEq for SingleEntityRename
impl PartialEq for SingleEntityRename
impl StructuralPartialEq for SingleEntityRename
Auto Trait Implementations§
impl Freeze for SingleEntityRename
impl RefUnwindSafe for SingleEntityRename
impl Send for SingleEntityRename
impl Sync for SingleEntityRename
impl Unpin for SingleEntityRename
impl UnwindSafe for SingleEntityRename
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