pub enum PluginSchemaContribution {
Table {
logical_name: String,
table: DbTable,
},
Field {
table: String,
logical_name: String,
field: DbField,
},
}Expand description
Database schema contribution made by a plugin.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for PluginSchemaContribution
impl Clone for PluginSchemaContribution
Source§fn clone(&self) -> PluginSchemaContribution
fn clone(&self) -> PluginSchemaContribution
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 PluginSchemaContribution
impl Debug for PluginSchemaContribution
Source§impl PartialEq for PluginSchemaContribution
impl PartialEq for PluginSchemaContribution
Source§fn eq(&self, other: &PluginSchemaContribution) -> bool
fn eq(&self, other: &PluginSchemaContribution) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PluginSchemaContribution
impl StructuralPartialEq for PluginSchemaContribution
Auto Trait Implementations§
impl Freeze for PluginSchemaContribution
impl RefUnwindSafe for PluginSchemaContribution
impl Send for PluginSchemaContribution
impl Sync for PluginSchemaContribution
impl Unpin for PluginSchemaContribution
impl UnsafeUnpin for PluginSchemaContribution
impl UnwindSafe for PluginSchemaContribution
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.