pub struct TFetchResultsReq {
pub operation_handle: TOperationHandle,
pub orientation: TFetchOrientation,
pub max_rows: i64,
pub fetch_type: Option<i16>,
}
Fields§
§operation_handle: TOperationHandle
§orientation: TFetchOrientation
§max_rows: i64
§fetch_type: Option<i16>
Implementations§
Source§impl TFetchResultsReq
impl TFetchResultsReq
pub fn new<F4>( operation_handle: TOperationHandle, orientation: TFetchOrientation, max_rows: i64, fetch_type: F4, ) -> TFetchResultsReq
Trait Implementations§
Source§impl Clone for TFetchResultsReq
impl Clone for TFetchResultsReq
Source§fn clone(&self) -> TFetchResultsReq
fn clone(&self) -> TFetchResultsReq
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 TFetchResultsReq
impl Debug for TFetchResultsReq
Source§impl Hash for TFetchResultsReq
impl Hash for TFetchResultsReq
Source§impl Ord for TFetchResultsReq
impl Ord for TFetchResultsReq
Source§fn cmp(&self, other: &TFetchResultsReq) -> Ordering
fn cmp(&self, other: &TFetchResultsReq) -> 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 TFetchResultsReq
impl PartialEq for TFetchResultsReq
Source§impl PartialOrd for TFetchResultsReq
impl PartialOrd for TFetchResultsReq
Source§impl TSerializable for TFetchResultsReq
impl TSerializable for TFetchResultsReq
fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol, ) -> Result<TFetchResultsReq>
fn write_to_out_protocol(&self, o_prot: &mut dyn TOutputProtocol) -> Result<()>
impl Eq for TFetchResultsReq
impl StructuralPartialEq for TFetchResultsReq
Auto Trait Implementations§
impl Freeze for TFetchResultsReq
impl RefUnwindSafe for TFetchResultsReq
impl Send for TFetchResultsReq
impl Sync for TFetchResultsReq
impl Unpin for TFetchResultsReq
impl UnwindSafe for TFetchResultsReq
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