pub struct TSRawDataQueryReq {
pub session_id: i64,
pub paths: Vec<String>,
pub fetch_size: Option<i32>,
pub start_time: i64,
pub end_time: i64,
pub statement_id: i64,
}
Fields§
§session_id: i64
§paths: Vec<String>
§fetch_size: Option<i32>
§start_time: i64
§end_time: i64
§statement_id: i64
Implementations§
Source§impl TSRawDataQueryReq
impl TSRawDataQueryReq
pub fn new<F3>( session_id: i64, paths: Vec<String>, fetch_size: F3, start_time: i64, end_time: i64, statement_id: i64, ) -> TSRawDataQueryReq
pub fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol, ) -> Result<TSRawDataQueryReq>
pub fn write_to_out_protocol( &self, o_prot: &mut dyn TOutputProtocol, ) -> Result<()>
Trait Implementations§
Source§impl Clone for TSRawDataQueryReq
impl Clone for TSRawDataQueryReq
Source§fn clone(&self) -> TSRawDataQueryReq
fn clone(&self) -> TSRawDataQueryReq
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 TSRawDataQueryReq
impl Debug for TSRawDataQueryReq
Source§impl Hash for TSRawDataQueryReq
impl Hash for TSRawDataQueryReq
Source§impl Ord for TSRawDataQueryReq
impl Ord for TSRawDataQueryReq
Source§fn cmp(&self, other: &TSRawDataQueryReq) -> Ordering
fn cmp(&self, other: &TSRawDataQueryReq) -> 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 TSRawDataQueryReq
impl PartialEq for TSRawDataQueryReq
Source§impl PartialOrd for TSRawDataQueryReq
impl PartialOrd for TSRawDataQueryReq
impl Eq for TSRawDataQueryReq
impl StructuralPartialEq for TSRawDataQueryReq
Auto Trait Implementations§
impl Freeze for TSRawDataQueryReq
impl RefUnwindSafe for TSRawDataQueryReq
impl Send for TSRawDataQueryReq
impl Sync for TSRawDataQueryReq
impl Unpin for TSRawDataQueryReq
impl UnwindSafe for TSRawDataQueryReq
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