Enum ntex_util::services::buffer::BufferServiceError   
source · pub enum BufferServiceError<E> {
    Service(E),
    RequestCanceled,
}Variants§
Trait Implementations§
source§impl<E: Clone> Clone for BufferServiceError<E>
 
impl<E: Clone> Clone for BufferServiceError<E>
source§fn clone(&self) -> BufferServiceError<E>
 
fn clone(&self) -> BufferServiceError<E>
Returns a copy 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<E: Debug> Debug for BufferServiceError<E>
 
impl<E: Debug> Debug for BufferServiceError<E>
source§impl<E: Display> Display for BufferServiceError<E>
 
impl<E: Display> Display for BufferServiceError<E>
source§impl<E: Display + Debug> Error for BufferServiceError<E>
 
impl<E: Display + Debug> Error for BufferServiceError<E>
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
 
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
 
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl<E> From<E> for BufferServiceError<E>
 
impl<E> From<E> for BufferServiceError<E>
source§impl<E: PartialEq> PartialEq for BufferServiceError<E>
 
impl<E: PartialEq> PartialEq for BufferServiceError<E>
source§fn eq(&self, other: &BufferServiceError<E>) -> bool
 
fn eq(&self, other: &BufferServiceError<E>) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl<E: Copy> Copy for BufferServiceError<E>
impl<E: Eq> Eq for BufferServiceError<E>
impl<E> StructuralEq for BufferServiceError<E>
impl<E> StructuralPartialEq for BufferServiceError<E>
Auto Trait Implementations§
impl<E> RefUnwindSafe for BufferServiceError<E>where
    E: RefUnwindSafe,
impl<E> Send for BufferServiceError<E>where
    E: Send,
impl<E> Sync for BufferServiceError<E>where
    E: Sync,
impl<E> Unpin for BufferServiceError<E>where
    E: Unpin,
impl<E> UnwindSafe for BufferServiceError<E>where
    E: UnwindSafe,
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