pub struct DurableOperationCancelled {
pub selection_group_id: String,
pub member_key: SelectionKey,
pub member_index: usize,
pub operation_kind: String,
pub operation_identity: String,
}Expand description
Typed result of explicitly awaiting a cancelled non-winning operation.
Fields§
§selection_group_id: String§member_key: SelectionKey§member_index: usize§operation_kind: String§operation_identity: StringTrait Implementations§
Source§impl Clone for DurableOperationCancelled
impl Clone for DurableOperationCancelled
Source§fn clone(&self) -> DurableOperationCancelled
fn clone(&self) -> DurableOperationCancelled
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DurableOperationCancelled
impl Debug for DurableOperationCancelled
Source§impl Display for DurableOperationCancelled
impl Display for DurableOperationCancelled
impl Eq for DurableOperationCancelled
Source§impl Error for DurableOperationCancelled
impl Error for DurableOperationCancelled
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
impl StructuralPartialEq for DurableOperationCancelled
Auto Trait Implementations§
impl Freeze for DurableOperationCancelled
impl RefUnwindSafe for DurableOperationCancelled
impl Send for DurableOperationCancelled
impl Sync for DurableOperationCancelled
impl Unpin for DurableOperationCancelled
impl UnsafeUnpin for DurableOperationCancelled
impl UnwindSafe for DurableOperationCancelled
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