pub struct CypherQuery {
pub cypher: String,
pub parameters: HashMap<String, Value>,
}Expand description
Cypher 查询
Fields§
§cypher: String§parameters: HashMap<String, Value>Implementations§
Trait Implementations§
Source§impl Clone for CypherQuery
impl Clone for CypherQuery
Source§fn clone(&self) -> CypherQuery
fn clone(&self) -> CypherQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CypherQuery
impl RefUnwindSafe for CypherQuery
impl Send for CypherQuery
impl Sync for CypherQuery
impl Unpin for CypherQuery
impl UnsafeUnpin for CypherQuery
impl UnwindSafe for CypherQuery
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