Struct iotdb_client::client::common::TSettleReq
source · pub struct TSettleReq {
pub paths: Vec<String>,
}
Fields§
§paths: Vec<String>
Implementations§
source§impl TSettleReq
impl TSettleReq
pub fn new(paths: Vec<String>) -> TSettleReq
pub fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol ) -> Result<TSettleReq>
pub fn write_to_out_protocol( &self, o_prot: &mut dyn TOutputProtocol ) -> Result<()>
Trait Implementations§
source§impl Clone for TSettleReq
impl Clone for TSettleReq
source§fn clone(&self) -> TSettleReq
fn clone(&self) -> TSettleReq
Returns a copy 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 TSettleReq
impl Debug for TSettleReq
source§impl Hash for TSettleReq
impl Hash for TSettleReq
source§impl Ord for TSettleReq
impl Ord for TSettleReq
source§fn cmp(&self, other: &TSettleReq) -> Ordering
fn cmp(&self, other: &TSettleReq) -> 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 TSettleReq
impl PartialEq for TSettleReq
source§fn eq(&self, other: &TSettleReq) -> bool
fn eq(&self, other: &TSettleReq) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for TSettleReq
impl PartialOrd for TSettleReq
source§fn partial_cmp(&self, other: &TSettleReq) -> Option<Ordering>
fn partial_cmp(&self, other: &TSettleReq) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for TSettleReq
impl StructuralPartialEq for TSettleReq
Auto Trait Implementations§
impl Freeze for TSettleReq
impl RefUnwindSafe for TSettleReq
impl Send for TSettleReq
impl Sync for TSettleReq
impl Unpin for TSettleReq
impl UnwindSafe for TSettleReq
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