pub struct RpcTickReport {
pub done_get_queries: Vec<Id>,
pub done_put_queries: Vec<Id>,
pub received_from: Option<ReceivedFrom>,
}Expand description
Any received message and done queries in the Rpc::tick.
Fields§
§done_get_queries: Vec<Id>§done_put_queries: Vec<Id>§received_from: Option<ReceivedFrom>The received message on this tick if any, and the SocketAddr of the sender.
Trait Implementations§
Source§impl Clone for RpcTickReport
impl Clone for RpcTickReport
Source§fn clone(&self) -> RpcTickReport
fn clone(&self) -> RpcTickReport
Returns a copy 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 RpcTickReport
impl RefUnwindSafe for RpcTickReport
impl Send for RpcTickReport
impl Sync for RpcTickReport
impl Unpin for RpcTickReport
impl UnwindSafe for RpcTickReport
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