pub enum ErrorCode {
Show 17 variants
BadHeaderFormat = 1,
BadLength = 17,
BadAcpSeid = 18,
SepInUse = 19,
SepNotInUse = 20,
BadServiceCategory = 23,
BadPayloadFormat = 24,
NotSupportedCommand = 25,
InvalidCapabilities = 26,
BadRecoveryType = 34,
BadMediaTransportFormat = 35,
BadRecoveryFormat = 37,
BadRohcFormat = 38,
BadCpFormat = 39,
BadMultiplexingFormat = 40,
UnsupportedConfiguration = 41,
BadState = 49,
}
Expand description
Error Codes that can be returned as part of a reject message. See Section 8.20.6
Variants§
BadHeaderFormat = 1
BadLength = 17
BadAcpSeid = 18
SepInUse = 19
SepNotInUse = 20
BadServiceCategory = 23
BadPayloadFormat = 24
NotSupportedCommand = 25
InvalidCapabilities = 26
BadRecoveryType = 34
BadMediaTransportFormat = 35
BadRecoveryFormat = 37
BadRohcFormat = 38
BadCpFormat = 39
BadMultiplexingFormat = 40
UnsupportedConfiguration = 41
BadState = 49
Implementations§
Trait Implementations§
impl Copy for ErrorCode
impl Eq for ErrorCode
impl StructuralPartialEq for ErrorCode
Auto Trait Implementations§
impl Freeze for ErrorCode
impl RefUnwindSafe for ErrorCode
impl Send for ErrorCode
impl Sync for ErrorCode
impl Unpin for ErrorCode
impl UnwindSafe for ErrorCode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more