pub enum Neo4jMap<'a> {
Row(&'a Row),
Node(&'a Node),
Relation(&'a Relation),
UnboundedRelation(&'a UnboundedRelation),
}Expand description
An abstraction over the different types of returned values from Neo4j.
Variants§
Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Neo4jMap<'a>
impl<'a> RefUnwindSafe for Neo4jMap<'a>
impl<'a> Send for Neo4jMap<'a>
impl<'a> Sync for Neo4jMap<'a>
impl<'a> Unpin for Neo4jMap<'a>
impl<'a> UnwindSafe for Neo4jMap<'a>
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