pub struct QueryExecutor { /* private fields */ }
Implementations§
Source§impl QueryExecutor
impl QueryExecutor
Sourcepub async fn fetch_next_chunk(&self) -> Result<Option<Vec<SnowflakeRow>>>
pub async fn fetch_next_chunk(&self) -> Result<Option<Vec<SnowflakeRow>>>
Fetch a single chunk
Sourcepub async fn fetch_all(&self) -> Result<Vec<SnowflakeRow>>
pub async fn fetch_all(&self) -> Result<Vec<SnowflakeRow>>
Fetch all the remaining chunks at once
Auto Trait Implementations§
impl !Freeze for QueryExecutor
impl !RefUnwindSafe for QueryExecutor
impl Send for QueryExecutor
impl Sync for QueryExecutor
impl Unpin for QueryExecutor
impl !UnwindSafe for QueryExecutor
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