Enum snowflake_api::QueryResult
source · pub enum QueryResult {
Arrow(Vec<RecordBatch>),
Json(Value),
Empty,
}
Expand description
Container for query result. Arrow is returned by-default for all SELECT statements, unless there is session configuration issue or it’s a different statement type.
Variants§
Auto Trait Implementations§
impl !RefUnwindSafe for QueryResult
impl Send for QueryResult
impl Sync for QueryResult
impl Unpin for QueryResult
impl !UnwindSafe for QueryResult
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