Struct iotdb::rpc::TSRawDataQueryReq[][src]

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: i64paths: Vec<String>fetch_size: Option<i32>start_time: i64end_time: i64statement_id: i64

Implementations

impl TSRawDataQueryReq[src]

pub fn new<F3>(
    session_id: i64,
    paths: Vec<String>,
    fetch_size: F3,
    start_time: i64,
    end_time: i64,
    statement_id: i64
) -> TSRawDataQueryReq where
    F3: Into<Option<i32>>, 
[src]

pub fn read_from_in_protocol(
    i_prot: &mut dyn TInputProtocol
) -> Result<TSRawDataQueryReq>
[src]

pub fn write_to_out_protocol(
    &self,
    o_prot: &mut dyn TOutputProtocol
) -> Result<()>
[src]

Trait Implementations

impl Clone for TSRawDataQueryReq[src]

impl Debug for TSRawDataQueryReq[src]

impl Eq for TSRawDataQueryReq[src]

impl Hash for TSRawDataQueryReq[src]

impl Ord for TSRawDataQueryReq[src]

impl PartialEq<TSRawDataQueryReq> for TSRawDataQueryReq[src]

impl PartialOrd<TSRawDataQueryReq> for TSRawDataQueryReq[src]

impl StructuralEq for TSRawDataQueryReq[src]

impl StructuralPartialEq for TSRawDataQueryReq[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.