pub enum StageLoadSelectItemKind {
SelectItem(SelectItem),
StageLoadSelectItem(StageLoadSelectItem),
}Expand description
This enum enables support for both standard SQL select item expressions and Snowflake-specific ones for data loading.
Variants§
SelectItem(SelectItem)
A standard SQL select item expression.
StageLoadSelectItem(StageLoadSelectItem)
A Snowflake-specific select item used for stage loading.
Trait Implementations§
Source§impl Clone for StageLoadSelectItemKind
impl Clone for StageLoadSelectItemKind
Source§fn clone(&self) -> StageLoadSelectItemKind
fn clone(&self) -> StageLoadSelectItemKind
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 StageLoadSelectItemKind
impl Debug for StageLoadSelectItemKind
Source§impl Display for StageLoadSelectItemKind
impl Display for StageLoadSelectItemKind
Source§impl Hash for StageLoadSelectItemKind
impl Hash for StageLoadSelectItemKind
Source§impl Ord for StageLoadSelectItemKind
impl Ord for StageLoadSelectItemKind
Source§fn cmp(&self, other: &StageLoadSelectItemKind) -> Ordering
fn cmp(&self, other: &StageLoadSelectItemKind) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for StageLoadSelectItemKind
impl PartialEq for StageLoadSelectItemKind
Source§impl PartialOrd for StageLoadSelectItemKind
impl PartialOrd for StageLoadSelectItemKind
Source§impl Visit for StageLoadSelectItemKind
impl Visit for StageLoadSelectItemKind
Source§impl VisitMut for StageLoadSelectItemKind
impl VisitMut for StageLoadSelectItemKind
Source§fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
Mutably visit this node with the provided
VisitorMut. Read moreimpl Eq for StageLoadSelectItemKind
impl StructuralPartialEq for StageLoadSelectItemKind
Auto Trait Implementations§
impl Freeze for StageLoadSelectItemKind
impl RefUnwindSafe for StageLoadSelectItemKind
impl Send for StageLoadSelectItemKind
impl Sync for StageLoadSelectItemKind
impl Unpin for StageLoadSelectItemKind
impl UnsafeUnpin for StageLoadSelectItemKind
impl UnwindSafe for StageLoadSelectItemKind
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