Struct databend_client::response::QueryResponse
source · pub struct QueryResponse {
pub id: String,
pub session_id: Option<String>,
pub session: Option<SessionConfig>,
pub schema: Vec<SchemaField>,
pub data: Vec<Vec<String>>,
pub state: String,
pub error: Option<QueryError>,
pub stats: QueryStats,
pub stats_uri: Option<String>,
pub final_uri: Option<String>,
pub next_uri: Option<String>,
pub kill_uri: Option<String>,
}
Fields§
§id: String
§session_id: Option<String>
§session: Option<SessionConfig>
§schema: Vec<SchemaField>
§data: Vec<Vec<String>>
§state: String
§error: Option<QueryError>
§stats: QueryStats
§stats_uri: Option<String>
§final_uri: Option<String>
§next_uri: Option<String>
§kill_uri: Option<String>
Trait Implementations§
source§impl Debug for QueryResponse
impl Debug for QueryResponse
source§impl<'de> Deserialize<'de> for QueryResponse
impl<'de> Deserialize<'de> for QueryResponse
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 RefUnwindSafe for QueryResponse
impl Send for QueryResponse
impl Sync for QueryResponse
impl Unpin for QueryResponse
impl UnwindSafe for QueryResponse
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