pub struct CancellationRecord {
pub turn: u32,
pub operation_id: String,
pub reason: CancellationReason,
pub pending_call_ids: Vec<String>,
}Fields§
§turn: u32§operation_id: String§reason: CancellationReason§pending_call_ids: Vec<String>Trait Implementations§
Source§impl Clone for CancellationRecord
impl Clone for CancellationRecord
Source§fn clone(&self) -> CancellationRecord
fn clone(&self) -> CancellationRecord
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 CancellationRecord
impl Debug for CancellationRecord
Source§impl<'de> Deserialize<'de> for CancellationRecord
impl<'de> Deserialize<'de> for CancellationRecord
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for CancellationRecord
Source§impl PartialEq for CancellationRecord
impl PartialEq for CancellationRecord
Source§impl Serialize for CancellationRecord
impl Serialize for CancellationRecord
impl StructuralPartialEq for CancellationRecord
Auto Trait Implementations§
impl Freeze for CancellationRecord
impl RefUnwindSafe for CancellationRecord
impl Send for CancellationRecord
impl Sync for CancellationRecord
impl Unpin for CancellationRecord
impl UnsafeUnpin for CancellationRecord
impl UnwindSafe for CancellationRecord
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