pub struct AlgorithmResult {
pub columns: Vec<String>,
pub rows: Vec<Vec<Value>>,
}Expand description
Result of an algorithm execution.
Fields§
§columns: Vec<String>Result columns.
rows: Vec<Vec<Value>>Result rows.
Implementations§
Auto Trait Implementations§
impl Freeze for AlgorithmResult
impl RefUnwindSafe for AlgorithmResult
impl Send for AlgorithmResult
impl Sync for AlgorithmResult
impl Unpin for AlgorithmResult
impl UnwindSafe for AlgorithmResult
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