pub struct NamingConflict {
pub new_table_id: Uuid,
pub new_table_name: String,
pub existing_table_id: Uuid,
pub existing_table_name: String,
}Expand description
Naming conflict between two tables
Fields§
§new_table_id: Uuid§new_table_name: String§existing_table_id: Uuid§existing_table_name: StringTrait Implementations§
Source§impl Clone for NamingConflict
impl Clone for NamingConflict
Source§fn clone(&self) -> NamingConflict
fn clone(&self) -> NamingConflict
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 NamingConflict
impl Debug for NamingConflict
Source§impl<'de> Deserialize<'de> for NamingConflict
impl<'de> Deserialize<'de> for NamingConflict
Source§fn 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
Auto Trait Implementations§
impl Freeze for NamingConflict
impl RefUnwindSafe for NamingConflict
impl Send for NamingConflict
impl Sync for NamingConflict
impl Unpin for NamingConflict
impl UnwindSafe for NamingConflict
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