pub struct ClientBudget {
pub max_creates: usize,
pub max_updates: usize,
pub max_destroys: usize,
}Expand description
Budget caps for per-client deltas.
Fields§
§max_creates: usize§max_updates: usize§max_destroys: usizeImplementations§
Source§impl ClientBudget
impl ClientBudget
Trait Implementations§
Source§impl Clone for ClientBudget
impl Clone for ClientBudget
Source§fn clone(&self) -> ClientBudget
fn clone(&self) -> ClientBudget
Returns a duplicate 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 moreSource§impl Debug for ClientBudget
impl Debug for ClientBudget
Source§impl PartialEq for ClientBudget
impl PartialEq for ClientBudget
impl Copy for ClientBudget
impl Eq for ClientBudget
impl StructuralPartialEq for ClientBudget
Auto Trait Implementations§
impl Freeze for ClientBudget
impl RefUnwindSafe for ClientBudget
impl Send for ClientBudget
impl Sync for ClientBudget
impl Unpin for ClientBudget
impl UnwindSafe for ClientBudget
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