pub struct TOperationHandle {
pub operation_id: THandleIdentifier,
pub operation_type: TOperationType,
pub has_result_set: bool,
pub modified_row_count: Option<OrderedFloat<f64>>,
}
Fields§
§operation_id: THandleIdentifier
§operation_type: TOperationType
§has_result_set: bool
§modified_row_count: Option<OrderedFloat<f64>>
Implementations§
Source§impl TOperationHandle
impl TOperationHandle
pub fn new<F4>( operation_id: THandleIdentifier, operation_type: TOperationType, has_result_set: bool, modified_row_count: F4, ) -> TOperationHandle
Trait Implementations§
Source§impl Clone for TOperationHandle
impl Clone for TOperationHandle
Source§fn clone(&self) -> TOperationHandle
fn clone(&self) -> TOperationHandle
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 TOperationHandle
impl Debug for TOperationHandle
Source§impl Hash for TOperationHandle
impl Hash for TOperationHandle
Source§impl Ord for TOperationHandle
impl Ord for TOperationHandle
Source§fn cmp(&self, other: &TOperationHandle) -> Ordering
fn cmp(&self, other: &TOperationHandle) -> 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 TOperationHandle
impl PartialEq for TOperationHandle
Source§impl PartialOrd for TOperationHandle
impl PartialOrd for TOperationHandle
Source§impl TSerializable for TOperationHandle
impl TSerializable for TOperationHandle
fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol, ) -> Result<TOperationHandle>
fn write_to_out_protocol(&self, o_prot: &mut dyn TOutputProtocol) -> Result<()>
impl Eq for TOperationHandle
impl StructuralPartialEq for TOperationHandle
Auto Trait Implementations§
impl Freeze for TOperationHandle
impl RefUnwindSafe for TOperationHandle
impl Send for TOperationHandle
impl Sync for TOperationHandle
impl Unpin for TOperationHandle
impl UnwindSafe for TOperationHandle
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