pub enum PostfixPolicyError<ErrorType> {
    IoError(Error),
    ProtocolError(Vec<u8>),
    HandlerError(ErrorType),
}Expand description
Errors that can occur in this Crate
Variants§
IoError(Error)
An IO error occured while sending or receiving.
ProtocolError(Vec<u8>)
The request sent by the server contained an error.
HandlerError(ErrorType)
one of the PolicyRequestHandler methods indicated an error.
Trait Implementations§
Source§impl<ErrorType: Debug> Debug for PostfixPolicyError<ErrorType>
 
impl<ErrorType: Debug> Debug for PostfixPolicyError<ErrorType>
Auto Trait Implementations§
impl<ErrorType> Freeze for PostfixPolicyError<ErrorType>where
    ErrorType: Freeze,
impl<ErrorType> !RefUnwindSafe for PostfixPolicyError<ErrorType>
impl<ErrorType> Send for PostfixPolicyError<ErrorType>where
    ErrorType: Send,
impl<ErrorType> Sync for PostfixPolicyError<ErrorType>where
    ErrorType: Sync,
impl<ErrorType> Unpin for PostfixPolicyError<ErrorType>where
    ErrorType: Unpin,
impl<ErrorType> !UnwindSafe for PostfixPolicyError<ErrorType>
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