pub struct ReplicationFrameLimits {
pub max_entity_deltas: usize,
pub max_components_per_entity: usize,
pub max_component_bytes: usize,
}Expand description
Limits used by ReplicationFrameBuilder.
Fields§
§max_entity_deltas: usizeMaximum entity deltas to materialize in one frame.
max_components_per_entity: usizeMaximum component deltas to include per entity.
max_component_bytes: usizeMaximum component payload bytes to include per component.
Trait Implementations§
Source§impl Clone for ReplicationFrameLimits
impl Clone for ReplicationFrameLimits
Source§fn clone(&self) -> ReplicationFrameLimits
fn clone(&self) -> ReplicationFrameLimits
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 moreimpl Copy for ReplicationFrameLimits
Source§impl Debug for ReplicationFrameLimits
impl Debug for ReplicationFrameLimits
Source§impl Default for ReplicationFrameLimits
impl Default for ReplicationFrameLimits
impl Eq for ReplicationFrameLimits
Source§impl PartialEq for ReplicationFrameLimits
impl PartialEq for ReplicationFrameLimits
impl StructuralPartialEq for ReplicationFrameLimits
Auto Trait Implementations§
impl Freeze for ReplicationFrameLimits
impl RefUnwindSafe for ReplicationFrameLimits
impl Send for ReplicationFrameLimits
impl Sync for ReplicationFrameLimits
impl Unpin for ReplicationFrameLimits
impl UnsafeUnpin for ReplicationFrameLimits
impl UnwindSafe for ReplicationFrameLimits
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