pub struct RecordedCall {
pub timestamp_ms: u64,
pub call: RpcCall,
}Expand description
Records RPC calls with timestamps for debugging and replay.
Fields§
§timestamp_ms: u64§call: RpcCallTrait Implementations§
Source§impl Clone for RecordedCall
impl Clone for RecordedCall
Source§fn clone(&self) -> RecordedCall
fn clone(&self) -> RecordedCall
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 moreAuto Trait Implementations§
impl Freeze for RecordedCall
impl RefUnwindSafe for RecordedCall
impl Send for RecordedCall
impl Sync for RecordedCall
impl Unpin for RecordedCall
impl UnsafeUnpin for RecordedCall
impl UnwindSafe for RecordedCall
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