pub struct EsqlResponse {
pub columns: Vec<EsqlColumn>,
pub values: Vec<Vec<Value>>,
pub is_partial: bool,
}Fields§
§columns: Vec<EsqlColumn>§values: Vec<Vec<Value>>§is_partial: boolTrait Implementations§
Source§impl Clone for EsqlResponse
impl Clone for EsqlResponse
Source§fn clone(&self) -> EsqlResponse
fn clone(&self) -> EsqlResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EsqlResponse
impl Debug for EsqlResponse
Source§impl PartialEq for EsqlResponse
impl PartialEq for EsqlResponse
impl StructuralPartialEq for EsqlResponse
Auto Trait Implementations§
impl Freeze for EsqlResponse
impl RefUnwindSafe for EsqlResponse
impl Send for EsqlResponse
impl Sync for EsqlResponse
impl Unpin for EsqlResponse
impl UnsafeUnpin for EsqlResponse
impl UnwindSafe for EsqlResponse
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