pub struct CapacityWarning {
pub current_entries: usize,
pub max_entries: usize,
pub entries_over_limit: usize,
}Fields§
§current_entries: usize§max_entries: usize§entries_over_limit: usizeTrait Implementations§
Source§impl Clone for CapacityWarning
impl Clone for CapacityWarning
Source§fn clone(&self) -> CapacityWarning
fn clone(&self) -> CapacityWarning
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 moreAuto Trait Implementations§
impl Freeze for CapacityWarning
impl RefUnwindSafe for CapacityWarning
impl Send for CapacityWarning
impl Sync for CapacityWarning
impl Unpin for CapacityWarning
impl UnwindSafe for CapacityWarning
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