pub trait Replicate<P>: ReplicateSafe<P> where
    P: ProtocolType
{ fn clone(&self) -> Self; }
Expand description

A struct that implements ReplicateSafe is a Message/Component, or otherwise, a container of Properties that can be scoped, tracked, and synced, with a remote host

Required methods

Returns a clone of self

Implementors