Struct iotdb::rpc::TSInsertStringRecordsReq[][src]

pub struct TSInsertStringRecordsReq {
    pub session_id: i64,
    pub device_ids: Vec<String>,
    pub measurements_list: Vec<Vec<String>>,
    pub values_list: Vec<Vec<String>>,
    pub timestamps: Vec<i64>,
}

Fields

session_id: i64device_ids: Vec<String>measurements_list: Vec<Vec<String>>values_list: Vec<Vec<String>>timestamps: Vec<i64>

Implementations

impl TSInsertStringRecordsReq[src]

pub fn new(
    session_id: i64,
    device_ids: Vec<String>,
    measurements_list: Vec<Vec<String>>,
    values_list: Vec<Vec<String>>,
    timestamps: Vec<i64>
) -> TSInsertStringRecordsReq
[src]

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

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

Trait Implementations

impl Clone for TSInsertStringRecordsReq[src]

impl Debug for TSInsertStringRecordsReq[src]

impl Eq for TSInsertStringRecordsReq[src]

impl Hash for TSInsertStringRecordsReq[src]

impl Ord for TSInsertStringRecordsReq[src]

impl PartialEq<TSInsertStringRecordsReq> for TSInsertStringRecordsReq[src]

impl PartialOrd<TSInsertStringRecordsReq> for TSInsertStringRecordsReq[src]

impl StructuralEq for TSInsertStringRecordsReq[src]

impl StructuralPartialEq for TSInsertStringRecordsReq[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.