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