pub struct GraphResultRow {
pub values: Vec<GraphValue>,
}
Available on crate feature
redis-graph
only.Expand description
Result row for the graph_query
command
Fields§
§values: Vec<GraphValue>
collection of values
each value matches a column name in the result set header
Trait Implementations§
Source§impl Debug for GraphResultRow
impl Debug for GraphResultRow
Source§impl<'de> Deserialize<'de> for GraphResultRow
impl<'de> Deserialize<'de> for GraphResultRow
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 GraphResultRow
impl RefUnwindSafe for GraphResultRow
impl Send for GraphResultRow
impl Sync for GraphResultRow
impl Unpin for GraphResultRow
impl UnwindSafe for GraphResultRow
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