pub enum LimitCheck {
Ok,
AtLimit,
Exceeded(LimitExceeded),
}Expand description
Check result for session limits.
Variants§
Trait Implementations§
Source§impl Clone for LimitCheck
impl Clone for LimitCheck
Source§fn clone(&self) -> LimitCheck
fn clone(&self) -> LimitCheck
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 LimitCheck
impl Debug for LimitCheck
Source§impl PartialEq for LimitCheck
impl PartialEq for LimitCheck
impl Eq for LimitCheck
impl StructuralPartialEq for LimitCheck
Auto Trait Implementations§
impl Freeze for LimitCheck
impl RefUnwindSafe for LimitCheck
impl Send for LimitCheck
impl Sync for LimitCheck
impl Unpin for LimitCheck
impl UnwindSafe for LimitCheck
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