pub struct ReplicationTransportConfig {
pub budget: ReplicationBudget,
pub send_empty_frames: bool,
}Expand description
Client replication transport bridge configuration.
Fields§
§budget: ReplicationBudgetPlanner budget used for every viewer unless the caller builds frames manually.
send_empty_frames: boolWhether to send replication frames with no encoded entity deltas.
Trait Implementations§
Source§impl Clone for ReplicationTransportConfig
impl Clone for ReplicationTransportConfig
Source§fn clone(&self) -> ReplicationTransportConfig
fn clone(&self) -> ReplicationTransportConfig
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 ReplicationTransportConfig
Source§impl Debug for ReplicationTransportConfig
impl Debug for ReplicationTransportConfig
Source§impl Default for ReplicationTransportConfig
impl Default for ReplicationTransportConfig
Source§fn default() -> ReplicationTransportConfig
fn default() -> ReplicationTransportConfig
Returns the “default value” for a type. Read more
impl Eq for ReplicationTransportConfig
impl StructuralPartialEq for ReplicationTransportConfig
Auto Trait Implementations§
impl Freeze for ReplicationTransportConfig
impl RefUnwindSafe for ReplicationTransportConfig
impl Send for ReplicationTransportConfig
impl Sync for ReplicationTransportConfig
impl Unpin for ReplicationTransportConfig
impl UnsafeUnpin for ReplicationTransportConfig
impl UnwindSafe for ReplicationTransportConfig
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