pub struct TSFetchResultsResp {
pub status: TSStatus,
pub has_result_set: bool,
pub is_align: bool,
pub query_data_set: Option<TSQueryDataSet>,
pub non_align_query_data_set: Option<TSQueryNonAlignDataSet>,
}
Fields§
§status: TSStatus
§has_result_set: bool
§is_align: bool
§query_data_set: Option<TSQueryDataSet>
§non_align_query_data_set: Option<TSQueryNonAlignDataSet>
Implementations§
Source§impl TSFetchResultsResp
impl TSFetchResultsResp
pub fn new<F4, F5>( status: TSStatus, has_result_set: bool, is_align: bool, query_data_set: F4, non_align_query_data_set: F5, ) -> TSFetchResultsResp
pub fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol, ) -> Result<TSFetchResultsResp>
pub fn write_to_out_protocol( &self, o_prot: &mut dyn TOutputProtocol, ) -> Result<()>
Trait Implementations§
Source§impl Clone for TSFetchResultsResp
impl Clone for TSFetchResultsResp
Source§fn clone(&self) -> TSFetchResultsResp
fn clone(&self) -> TSFetchResultsResp
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 TSFetchResultsResp
impl Debug for TSFetchResultsResp
Source§impl Hash for TSFetchResultsResp
impl Hash for TSFetchResultsResp
Source§impl Ord for TSFetchResultsResp
impl Ord for TSFetchResultsResp
Source§fn cmp(&self, other: &TSFetchResultsResp) -> Ordering
fn cmp(&self, other: &TSFetchResultsResp) -> 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 TSFetchResultsResp
impl PartialEq for TSFetchResultsResp
Source§impl PartialOrd for TSFetchResultsResp
impl PartialOrd for TSFetchResultsResp
impl Eq for TSFetchResultsResp
impl StructuralPartialEq for TSFetchResultsResp
Auto Trait Implementations§
impl Freeze for TSFetchResultsResp
impl RefUnwindSafe for TSFetchResultsResp
impl Send for TSFetchResultsResp
impl Sync for TSFetchResultsResp
impl Unpin for TSFetchResultsResp
impl UnwindSafe for TSFetchResultsResp
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