pub enum EdgeOperand {
Node(NodeId),
Subgraph(SubgraphStatement),
}Expand description
边操作数
Variants§
Node(NodeId)
Subgraph(SubgraphStatement)
Trait Implementations§
Source§impl Clone for EdgeOperand
impl Clone for EdgeOperand
Source§fn clone(&self) -> EdgeOperand
fn clone(&self) -> EdgeOperand
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 EdgeOperand
impl Debug for EdgeOperand
Source§impl<'de> Deserialize<'de> for EdgeOperand
impl<'de> Deserialize<'de> for EdgeOperand
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
Source§impl PartialEq for EdgeOperand
impl PartialEq for EdgeOperand
Source§impl Serialize for EdgeOperand
impl Serialize for EdgeOperand
impl StructuralPartialEq for EdgeOperand
Auto Trait Implementations§
impl Freeze for EdgeOperand
impl RefUnwindSafe for EdgeOperand
impl Send for EdgeOperand
impl Sync for EdgeOperand
impl Unpin for EdgeOperand
impl UnwindSafe for EdgeOperand
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