pub enum RequestHandlerError {
NoSuchHandler,
NoAllowList,
AllowListFull,
}Variants§
Trait Implementations§
Source§impl Clone for RequestHandlerError
impl Clone for RequestHandlerError
Source§fn clone(&self) -> RequestHandlerError
fn clone(&self) -> RequestHandlerError
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 RequestHandlerError
Source§impl Debug for RequestHandlerError
impl Debug for RequestHandlerError
impl Eq for RequestHandlerError
Source§impl PartialEq for RequestHandlerError
impl PartialEq for RequestHandlerError
impl StructuralPartialEq for RequestHandlerError
Auto Trait Implementations§
impl Freeze for RequestHandlerError
impl RefUnwindSafe for RequestHandlerError
impl Send for RequestHandlerError
impl Sync for RequestHandlerError
impl Unpin for RequestHandlerError
impl UnsafeUnpin for RequestHandlerError
impl UnwindSafe for RequestHandlerError
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