pub struct StageLoadSelectItem {
pub alias: Option<Ident>,
pub file_col_num: i32,
pub element: Option<Ident>,
pub item_as: Option<Ident>,
}Expand description
A single item in the SELECT list for data loading from staged files.
Fields§
§alias: Option<Ident>Optional alias for the input source.
file_col_num: i32Column number within the staged file (1-based).
element: Option<Ident>Optional element identifier following the column reference.
item_as: Option<Ident>Optional alias for the item (AS clause).
Trait Implementations§
Source§impl Clone for StageLoadSelectItem
impl Clone for StageLoadSelectItem
Source§fn clone(&self) -> StageLoadSelectItem
fn clone(&self) -> StageLoadSelectItem
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 StageLoadSelectItem
impl Debug for StageLoadSelectItem
Source§impl Display for StageLoadSelectItem
impl Display for StageLoadSelectItem
Source§impl Hash for StageLoadSelectItem
impl Hash for StageLoadSelectItem
Source§impl Ord for StageLoadSelectItem
impl Ord for StageLoadSelectItem
Source§fn cmp(&self, other: &StageLoadSelectItem) -> Ordering
fn cmp(&self, other: &StageLoadSelectItem) -> 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 StageLoadSelectItem
impl PartialEq for StageLoadSelectItem
Source§impl PartialOrd for StageLoadSelectItem
impl PartialOrd for StageLoadSelectItem
Source§impl Visit for StageLoadSelectItem
impl Visit for StageLoadSelectItem
Source§impl VisitMut for StageLoadSelectItem
impl VisitMut for StageLoadSelectItem
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 StageLoadSelectItem
impl StructuralPartialEq for StageLoadSelectItem
Auto Trait Implementations§
impl Freeze for StageLoadSelectItem
impl RefUnwindSafe for StageLoadSelectItem
impl Send for StageLoadSelectItem
impl Sync for StageLoadSelectItem
impl Unpin for StageLoadSelectItem
impl UnsafeUnpin for StageLoadSelectItem
impl UnwindSafe for StageLoadSelectItem
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