pub struct RemoteCallStatus {
pub state: RemoteCallStatusState,
pub operation: Option<String>,
pub request_id: Option<String>,
pub pending: usize,
pub completed: u64,
pub errors: u64,
pub timeouts: u64,
}Expand description
RemoteCallStatus data container.
Fields§
§state: RemoteCallStatusStatestate field for state.
operation: Option<String>operation field for operation.
request_id: Option<String>request_id field for request id.
pending: usizepending field for pending.
completed: u64completed field for completed.
errors: u64errors field for errors.
timeouts: u64timeouts field for timeouts.
Trait Implementations§
Source§impl Clone for RemoteCallStatus
impl Clone for RemoteCallStatus
Source§fn clone(&self) -> RemoteCallStatus
fn clone(&self) -> RemoteCallStatus
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 RemoteCallStatus
impl Debug for RemoteCallStatus
Source§impl PartialEq for RemoteCallStatus
impl PartialEq for RemoteCallStatus
impl Eq for RemoteCallStatus
impl StructuralPartialEq for RemoteCallStatus
Auto Trait Implementations§
impl Freeze for RemoteCallStatus
impl RefUnwindSafe for RemoteCallStatus
impl Send for RemoteCallStatus
impl Sync for RemoteCallStatus
impl Unpin for RemoteCallStatus
impl UnsafeUnpin for RemoteCallStatus
impl UnwindSafe for RemoteCallStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.