pub struct TSQueryDataSet {
pub time: Vec<u8>,
pub value_list: Vec<Vec<u8>>,
pub bitmap_list: Vec<Vec<u8>>,
}
Fields§
§time: Vec<u8>
§value_list: Vec<Vec<u8>>
§bitmap_list: Vec<Vec<u8>>
Implementations§
Source§impl TSQueryDataSet
impl TSQueryDataSet
pub fn new( time: Vec<u8>, value_list: Vec<Vec<u8>>, bitmap_list: Vec<Vec<u8>>, ) -> TSQueryDataSet
pub fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol, ) -> Result<TSQueryDataSet>
pub fn write_to_out_protocol( &self, o_prot: &mut dyn TOutputProtocol, ) -> Result<()>
Trait Implementations§
Source§impl Clone for TSQueryDataSet
impl Clone for TSQueryDataSet
Source§fn clone(&self) -> TSQueryDataSet
fn clone(&self) -> TSQueryDataSet
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 TSQueryDataSet
impl Debug for TSQueryDataSet
Source§impl Hash for TSQueryDataSet
impl Hash for TSQueryDataSet
Source§impl Ord for TSQueryDataSet
impl Ord for TSQueryDataSet
Source§fn cmp(&self, other: &TSQueryDataSet) -> Ordering
fn cmp(&self, other: &TSQueryDataSet) -> 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 TSQueryDataSet
impl PartialEq for TSQueryDataSet
Source§impl PartialOrd for TSQueryDataSet
impl PartialOrd for TSQueryDataSet
impl Eq for TSQueryDataSet
impl StructuralPartialEq for TSQueryDataSet
Auto Trait Implementations§
impl Freeze for TSQueryDataSet
impl RefUnwindSafe for TSQueryDataSet
impl Send for TSQueryDataSet
impl Sync for TSQueryDataSet
impl Unpin for TSQueryDataSet
impl UnwindSafe for TSQueryDataSet
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