pub struct TFetchResultsResp {
pub status: TStatus,
pub has_more_rows: Option<bool>,
pub results: Option<TRowSet>,
}
Fields§
§status: TStatus
§has_more_rows: Option<bool>
§results: Option<TRowSet>
Implementations§
Trait Implementations§
Source§impl Clone for TFetchResultsResp
impl Clone for TFetchResultsResp
Source§fn clone(&self) -> TFetchResultsResp
fn clone(&self) -> TFetchResultsResp
Returns a duplicate of the value. Read more
1.0.0 · 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 TFetchResultsResp
impl Debug for TFetchResultsResp
Source§impl Hash for TFetchResultsResp
impl Hash for TFetchResultsResp
Source§impl Ord for TFetchResultsResp
impl Ord for TFetchResultsResp
Source§fn cmp(&self, other: &TFetchResultsResp) -> Ordering
fn cmp(&self, other: &TFetchResultsResp) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TFetchResultsResp
impl PartialEq for TFetchResultsResp
Source§impl PartialOrd for TFetchResultsResp
impl PartialOrd for TFetchResultsResp
Source§impl TSerializable for TFetchResultsResp
impl TSerializable for TFetchResultsResp
fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol, ) -> Result<TFetchResultsResp>
fn write_to_out_protocol(&self, o_prot: &mut dyn TOutputProtocol) -> Result<()>
impl Eq for TFetchResultsResp
impl StructuralPartialEq for TFetchResultsResp
Auto Trait Implementations§
impl Freeze for TFetchResultsResp
impl RefUnwindSafe for TFetchResultsResp
impl Send for TFetchResultsResp
impl Sync for TFetchResultsResp
impl Unpin for TFetchResultsResp
impl UnwindSafe for TFetchResultsResp
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