pub enum RCode {
Success = 0,
FormatError = 1,
ServerFailure = 2,
NameError = 3,
NotImplemented = 4,
Refused = 5,
Unsupported = 6,
}
Variants§
Success = 0
FormatError = 1
ServerFailure = 2
NameError = 3
NotImplemented = 4
Refused = 5
Unsupported = 6
Trait Implementations§
impl Copy for RCode
impl Eq for RCode
impl StructuralPartialEq for RCode
Auto Trait Implementations§
impl Freeze for RCode
impl RefUnwindSafe for RCode
impl Send for RCode
impl Sync for RCode
impl Unpin for RCode
impl UnwindSafe for RCode
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