pub struct CallEntry<T> {
pub id: EntryId,
pub operation: T,
pub response: EntryId,
}
Expand description
An entry in a history that represents the call to an operation.
Fields§
§id: EntryId
The identifier for this CallEntry
.
operation: T
The operation being called.
response: EntryId
The identifier of the ResponseEntry
that stores the response to this
operation.
Trait Implementations§
impl<T: Eq> Eq for CallEntry<T>
impl<T> StructuralPartialEq for CallEntry<T>
Auto Trait Implementations§
impl<T> Freeze for CallEntry<T>where
T: Freeze,
impl<T> RefUnwindSafe for CallEntry<T>where
T: RefUnwindSafe,
impl<T> Send for CallEntry<T>where
T: Send,
impl<T> Sync for CallEntry<T>where
T: Sync,
impl<T> Unpin for CallEntry<T>where
T: Unpin,
impl<T> UnwindSafe for CallEntry<T>where
T: UnwindSafe,
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