pub enum StatementResult<'a, T> {
Status(SnowflakeQueryStatus<'a>),
Result(SnowflakeSQLResult<T>),
}
Expand description
Whether the query is running or finished
Variants§
Status(SnowflakeQueryStatus<'a>)
Query still in progress…
Result(SnowflakeSQLResult<T>)
Query finished!
Trait Implementations§
Auto Trait Implementations§
impl<'a, T> Freeze for StatementResult<'a, T>
impl<'a, T> !RefUnwindSafe for StatementResult<'a, T>
impl<'a, T> Send for StatementResult<'a, T>where
T: Send,
impl<'a, T> Sync for StatementResult<'a, T>where
T: Sync,
impl<'a, T> Unpin for StatementResult<'a, T>where
T: Unpin,
impl<'a, T> !UnwindSafe for StatementResult<'a, T>
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