pub struct GqlExecutionResult {
pub kind: GqlStatementKind,
pub columns: Vec<String>,
pub rows: Vec<GqlRow>,
pub next_cursor: Option<String>,
pub stats: GqlExecutionStats,
pub mutation_stats: Option<GqlMutationStats>,
pub plan: Option<GqlExecutionExplain>,
}Fields§
§kind: GqlStatementKind§columns: Vec<String>§rows: Vec<GqlRow>§next_cursor: Option<String>§stats: GqlExecutionStats§mutation_stats: Option<GqlMutationStats>§plan: Option<GqlExecutionExplain>Trait Implementations§
Source§impl Clone for GqlExecutionResult
impl Clone for GqlExecutionResult
Source§fn clone(&self) -> GqlExecutionResult
fn clone(&self) -> GqlExecutionResult
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 GqlExecutionResult
impl Debug for GqlExecutionResult
Source§impl PartialEq for GqlExecutionResult
impl PartialEq for GqlExecutionResult
Source§fn eq(&self, other: &GqlExecutionResult) -> bool
fn eq(&self, other: &GqlExecutionResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GqlExecutionResult
Auto Trait Implementations§
impl Freeze for GqlExecutionResult
impl RefUnwindSafe for GqlExecutionResult
impl Send for GqlExecutionResult
impl Sync for GqlExecutionResult
impl Unpin for GqlExecutionResult
impl UnsafeUnpin for GqlExecutionResult
impl UnwindSafe for GqlExecutionResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more