pub enum AlterPropertyGraphAction {
AddVertexEdgeLabelProperties(AddVertexEdgeLabelProperties),
AddVertexEdgeTables(AddVertexEdgeTables),
AlterVertexEdgeLabels(AlterVertexEdgeLabels),
DropEdgeTables(DropEdgeTables),
DropVertexEdgeLabel(DropVertexEdgeLabel),
DropVertexEdgeLabelProperties(DropVertexEdgeLabelProperties),
DropVertexTables(DropVertexTables),
OwnerTo(OwnerTo),
RenameTo(RenameTo),
SetSchema(SetSchema),
}Variants§
AddVertexEdgeLabelProperties(AddVertexEdgeLabelProperties)
AddVertexEdgeTables(AddVertexEdgeTables)
AlterVertexEdgeLabels(AlterVertexEdgeLabels)
DropEdgeTables(DropEdgeTables)
DropVertexEdgeLabel(DropVertexEdgeLabel)
DropVertexEdgeLabelProperties(DropVertexEdgeLabelProperties)
DropVertexTables(DropVertexTables)
OwnerTo(OwnerTo)
RenameTo(RenameTo)
SetSchema(SetSchema)
Trait Implementations§
Source§impl AstNode for AlterPropertyGraphAction
impl AstNode for AlterPropertyGraphAction
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,
Source§impl Clone for AlterPropertyGraphAction
impl Clone for AlterPropertyGraphAction
Source§fn clone(&self) -> AlterPropertyGraphAction
fn clone(&self) -> AlterPropertyGraphAction
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 AlterPropertyGraphAction
impl Debug for AlterPropertyGraphAction
Source§impl From<AddVertexEdgeLabelProperties> for AlterPropertyGraphAction
impl From<AddVertexEdgeLabelProperties> for AlterPropertyGraphAction
Source§fn from(node: AddVertexEdgeLabelProperties) -> AlterPropertyGraphAction
fn from(node: AddVertexEdgeLabelProperties) -> AlterPropertyGraphAction
Converts to this type from the input type.
Source§impl From<AddVertexEdgeTables> for AlterPropertyGraphAction
impl From<AddVertexEdgeTables> for AlterPropertyGraphAction
Source§fn from(node: AddVertexEdgeTables) -> AlterPropertyGraphAction
fn from(node: AddVertexEdgeTables) -> AlterPropertyGraphAction
Converts to this type from the input type.
Source§impl From<AlterVertexEdgeLabels> for AlterPropertyGraphAction
impl From<AlterVertexEdgeLabels> for AlterPropertyGraphAction
Source§fn from(node: AlterVertexEdgeLabels) -> AlterPropertyGraphAction
fn from(node: AlterVertexEdgeLabels) -> AlterPropertyGraphAction
Converts to this type from the input type.
Source§impl From<DropEdgeTables> for AlterPropertyGraphAction
impl From<DropEdgeTables> for AlterPropertyGraphAction
Source§fn from(node: DropEdgeTables) -> AlterPropertyGraphAction
fn from(node: DropEdgeTables) -> AlterPropertyGraphAction
Converts to this type from the input type.
Source§impl From<DropVertexEdgeLabel> for AlterPropertyGraphAction
impl From<DropVertexEdgeLabel> for AlterPropertyGraphAction
Source§fn from(node: DropVertexEdgeLabel) -> AlterPropertyGraphAction
fn from(node: DropVertexEdgeLabel) -> AlterPropertyGraphAction
Converts to this type from the input type.
Source§impl From<DropVertexEdgeLabelProperties> for AlterPropertyGraphAction
impl From<DropVertexEdgeLabelProperties> for AlterPropertyGraphAction
Source§fn from(node: DropVertexEdgeLabelProperties) -> AlterPropertyGraphAction
fn from(node: DropVertexEdgeLabelProperties) -> AlterPropertyGraphAction
Converts to this type from the input type.
Source§impl From<DropVertexTables> for AlterPropertyGraphAction
impl From<DropVertexTables> for AlterPropertyGraphAction
Source§fn from(node: DropVertexTables) -> AlterPropertyGraphAction
fn from(node: DropVertexTables) -> AlterPropertyGraphAction
Converts to this type from the input type.
Source§impl From<OwnerTo> for AlterPropertyGraphAction
impl From<OwnerTo> for AlterPropertyGraphAction
Source§fn from(node: OwnerTo) -> AlterPropertyGraphAction
fn from(node: OwnerTo) -> AlterPropertyGraphAction
Converts to this type from the input type.
Source§impl From<RenameTo> for AlterPropertyGraphAction
impl From<RenameTo> for AlterPropertyGraphAction
Source§fn from(node: RenameTo) -> AlterPropertyGraphAction
fn from(node: RenameTo) -> AlterPropertyGraphAction
Converts to this type from the input type.
Source§impl From<SetSchema> for AlterPropertyGraphAction
impl From<SetSchema> for AlterPropertyGraphAction
Source§fn from(node: SetSchema) -> AlterPropertyGraphAction
fn from(node: SetSchema) -> AlterPropertyGraphAction
Converts to this type from the input type.
Source§impl Hash for AlterPropertyGraphAction
impl Hash for AlterPropertyGraphAction
Source§impl PartialEq for AlterPropertyGraphAction
impl PartialEq for AlterPropertyGraphAction
impl Eq for AlterPropertyGraphAction
impl StructuralPartialEq for AlterPropertyGraphAction
Auto Trait Implementations§
impl Freeze for AlterPropertyGraphAction
impl !RefUnwindSafe for AlterPropertyGraphAction
impl !Send for AlterPropertyGraphAction
impl !Sync for AlterPropertyGraphAction
impl Unpin for AlterPropertyGraphAction
impl UnsafeUnpin for AlterPropertyGraphAction
impl !UnwindSafe for AlterPropertyGraphAction
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