pub struct PackLimitError {
pub kind: PackLimitKind,
pub limit: usize,
pub attempted: usize,
}Expand description
Deterministic details for a rejected limit check.
Fields§
§kind: PackLimitKind§limit: usize§attempted: usizeTrait Implementations§
Source§impl Clone for PackLimitError
impl Clone for PackLimitError
Source§fn clone(&self) -> PackLimitError
fn clone(&self) -> PackLimitError
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 PackLimitError
Source§impl Debug for PackLimitError
impl Debug for PackLimitError
impl Eq for PackLimitError
Source§impl PartialEq for PackLimitError
impl PartialEq for PackLimitError
impl StructuralPartialEq for PackLimitError
Auto Trait Implementations§
impl Freeze for PackLimitError
impl RefUnwindSafe for PackLimitError
impl Send for PackLimitError
impl Sync for PackLimitError
impl Unpin for PackLimitError
impl UnsafeUnpin for PackLimitError
impl UnwindSafe for PackLimitError
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