pub struct VertexPattern {
pub variable: Option<String>,
pub labels: Vec<String>,
pub properties: HashMap<String, ValueExpression>,
}
Expand description
Vertex pattern for matching vertices
Fields§
§variable: Option<String>
§labels: Vec<String>
§properties: HashMap<String, ValueExpression>
Trait Implementations§
Source§impl Clone for VertexPattern
impl Clone for VertexPattern
Source§fn clone(&self) -> VertexPattern
fn clone(&self) -> VertexPattern
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 VertexPattern
impl Debug for VertexPattern
Source§impl Default for VertexPattern
impl Default for VertexPattern
Source§impl<'de> Deserialize<'de> for VertexPattern
impl<'de> Deserialize<'de> for VertexPattern
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
Auto Trait Implementations§
impl Freeze for VertexPattern
impl RefUnwindSafe for VertexPattern
impl Send for VertexPattern
impl Sync for VertexPattern
impl Unpin for VertexPattern
impl UnwindSafe for VertexPattern
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