pub struct FieldConflict {
pub field_name: String,
pub conflicting_types: Vec<String>,
}Expand description
UDT field conflict
Fields§
§field_name: StringField name
conflicting_types: Vec<String>Conflicting types
Trait Implementations§
Source§impl Clone for FieldConflict
impl Clone for FieldConflict
Source§fn clone(&self) -> FieldConflict
fn clone(&self) -> FieldConflict
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FieldConflict
impl Debug for FieldConflict
Source§impl<'de> Deserialize<'de> for FieldConflict
impl<'de> Deserialize<'de> for FieldConflict
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 FieldConflict
impl RefUnwindSafe for FieldConflict
impl Send for FieldConflict
impl Sync for FieldConflict
impl Unpin for FieldConflict
impl UnsafeUnpin for FieldConflict
impl UnwindSafe for FieldConflict
Blanket Implementations§
impl<T> Allocation for T
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