pub enum FromItem {
ExprFromItem(ExprFromItem),
FunctionFromItem(FunctionFromItem),
GraphTableFromItem(GraphTableFromItem),
JsonTableFromItem(JsonTableFromItem),
ParenFromItem(ParenFromItem),
RelationFromItem(RelationFromItem),
RowsFromItem(RowsFromItem),
XmlTableFromItem(XmlTableFromItem),
}Variants§
ExprFromItem(ExprFromItem)
FunctionFromItem(FunctionFromItem)
GraphTableFromItem(GraphTableFromItem)
JsonTableFromItem(JsonTableFromItem)
ParenFromItem(ParenFromItem)
RelationFromItem(RelationFromItem)
RowsFromItem(RowsFromItem)
XmlTableFromItem(XmlTableFromItem)
Implementations§
Trait Implementations§
Source§impl AstNode for FromItem
impl AstNode for FromItem
fn can_cast(kind: SyntaxKind) -> bool
fn cast(syntax: SyntaxNode) -> Option<Self>
fn syntax(&self) -> &SyntaxNode
fn clone_for_update(&self) -> Selfwhere
Self: Sized,
fn clone_subtree(&self) -> Selfwhere
Self: Sized,
impl Eq for FromItem
Source§impl From<ExprFromItem> for FromItem
impl From<ExprFromItem> for FromItem
Source§fn from(node: ExprFromItem) -> FromItem
fn from(node: ExprFromItem) -> FromItem
Converts to this type from the input type.
Source§impl From<FunctionFromItem> for FromItem
impl From<FunctionFromItem> for FromItem
Source§fn from(node: FunctionFromItem) -> FromItem
fn from(node: FunctionFromItem) -> FromItem
Converts to this type from the input type.
Source§impl From<GraphTableFromItem> for FromItem
impl From<GraphTableFromItem> for FromItem
Source§fn from(node: GraphTableFromItem) -> FromItem
fn from(node: GraphTableFromItem) -> FromItem
Converts to this type from the input type.
Source§impl From<JsonTableFromItem> for FromItem
impl From<JsonTableFromItem> for FromItem
Source§fn from(node: JsonTableFromItem) -> FromItem
fn from(node: JsonTableFromItem) -> FromItem
Converts to this type from the input type.
Source§impl From<ParenFromItem> for FromItem
impl From<ParenFromItem> for FromItem
Source§fn from(node: ParenFromItem) -> FromItem
fn from(node: ParenFromItem) -> FromItem
Converts to this type from the input type.
Source§impl From<RelationFromItem> for FromItem
impl From<RelationFromItem> for FromItem
Source§fn from(node: RelationFromItem) -> FromItem
fn from(node: RelationFromItem) -> FromItem
Converts to this type from the input type.
Source§impl From<RowsFromItem> for FromItem
impl From<RowsFromItem> for FromItem
Source§fn from(node: RowsFromItem) -> FromItem
fn from(node: RowsFromItem) -> FromItem
Converts to this type from the input type.
Source§impl From<XmlTableFromItem> for FromItem
impl From<XmlTableFromItem> for FromItem
Source§fn from(node: XmlTableFromItem) -> FromItem
fn from(node: XmlTableFromItem) -> FromItem
Converts to this type from the input type.
impl StructuralPartialEq for FromItem
Auto Trait Implementations§
impl !RefUnwindSafe for FromItem
impl !Send for FromItem
impl !Sync for FromItem
impl !UnwindSafe for FromItem
impl Freeze for FromItem
impl Unpin for FromItem
impl UnsafeUnpin for FromItem
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more