pub struct ReplicationPlan {
pub entities: Vec<EntityHandle>,
pub stats: ReplicationStats,
}Expand description
Replication planner result.
Fields§
§entities: Vec<EntityHandle>Selected entity handles.
stats: ReplicationStatsPlanner statistics.
Trait Implementations§
Source§impl Clone for ReplicationPlan
impl Clone for ReplicationPlan
Source§fn clone(&self) -> ReplicationPlan
fn clone(&self) -> ReplicationPlan
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 ReplicationPlan
impl Debug for ReplicationPlan
Source§impl Default for ReplicationPlan
impl Default for ReplicationPlan
Source§fn default() -> ReplicationPlan
fn default() -> ReplicationPlan
Returns the “default value” for a type. Read more
impl Eq for ReplicationPlan
Source§impl PartialEq for ReplicationPlan
impl PartialEq for ReplicationPlan
impl StructuralPartialEq for ReplicationPlan
Auto Trait Implementations§
impl Freeze for ReplicationPlan
impl RefUnwindSafe for ReplicationPlan
impl Send for ReplicationPlan
impl Sync for ReplicationPlan
impl Unpin for ReplicationPlan
impl UnsafeUnpin for ReplicationPlan
impl UnwindSafe for ReplicationPlan
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