pub enum TableLikeAction {
Including,
Excluding,
}Expand description
Whether a TableLikeOption includes or excludes its feature. A Copy leaf enum whose span
rides the owning TableLikeOption, like PartitionStrategy.
Variants§
Including
INCLUDING <feature> — copy the feature from the source table.
Excluding
EXCLUDING <feature> — do not copy the feature.
Trait Implementations§
Source§impl Clone for TableLikeAction
impl Clone for TableLikeAction
Source§fn clone(&self) -> TableLikeAction
fn clone(&self) -> TableLikeAction
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 moreimpl Copy for TableLikeAction
Source§impl Debug for TableLikeAction
impl Debug for TableLikeAction
Source§impl<'de> Deserialize<'de> for TableLikeAction
impl<'de> Deserialize<'de> for TableLikeAction
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
impl Eq for TableLikeAction
Source§impl Hash for TableLikeAction
impl Hash for TableLikeAction
Source§impl PartialEq for TableLikeAction
impl PartialEq for TableLikeAction
Source§impl Render for TableLikeAction
impl Render for TableLikeAction
Source§fn render(&self, _ctx: &RenderCtx<'_>, f: &mut Formatter<'_>) -> Result
fn render(&self, _ctx: &RenderCtx<'_>, f: &mut Formatter<'_>) -> Result
Return the render for this value.
Source§fn operand_binding_power(&self) -> Option<BindingPower>
fn operand_binding_power(&self) -> Option<BindingPower>
The binding power this node contributes when it appears as an operand, or
None (the default) for a self-delimiting node — an atom, call, or
constructor — that never needs parentheses. Read moreSource§impl Serialize for TableLikeAction
impl Serialize for TableLikeAction
impl StructuralPartialEq for TableLikeAction
Auto Trait Implementations§
impl Freeze for TableLikeAction
impl RefUnwindSafe for TableLikeAction
impl Send for TableLikeAction
impl Sync for TableLikeAction
impl Unpin for TableLikeAction
impl UnsafeUnpin for TableLikeAction
impl UnwindSafe for TableLikeAction
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