pub enum RejectReason {
Show 13 variants
Other,
BufferOverflow,
InconsistentParameters,
InvalidParameterDataType,
InvalidTag,
MissingRequiredParameter,
ParameterOutOfRange,
TooManyArguments,
UndefinedEnumeration,
UnrecognizedService,
InvalidDataEncoding,
Custom(RejectReasonValue),
Reserved(RejectReasonValue),
}Expand description
Reject reason codes
Variants§
Other
BufferOverflow
InconsistentParameters
InvalidParameterDataType
InvalidTag
MissingRequiredParameter
ParameterOutOfRange
TooManyArguments
UndefinedEnumeration
UnrecognizedService
InvalidDataEncoding
Custom(RejectReasonValue)
Reserved(RejectReasonValue)
Trait Implementations§
Source§impl Clone for RejectReason
impl Clone for RejectReason
Source§fn clone(&self) -> RejectReason
fn clone(&self) -> RejectReason
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 RejectReason
Source§impl Debug for RejectReason
impl Debug for RejectReason
Source§impl<'de> Deserialize<'de> for RejectReason
impl<'de> Deserialize<'de> for RejectReason
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for RejectReason
impl Display for RejectReason
impl Eq for RejectReason
Source§impl From<RejectReason> for u8
impl From<RejectReason> for u8
Source§fn from(value: RejectReason) -> Self
fn from(value: RejectReason) -> Self
Converts to this type from the input type.
Source§impl From<u8> for RejectReason
impl From<u8> for RejectReason
Source§impl Hash for RejectReason
impl Hash for RejectReason
Source§impl PartialEq for RejectReason
impl PartialEq for RejectReason
Source§fn eq(&self, other: &RejectReason) -> bool
fn eq(&self, other: &RejectReason) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RejectReason
impl Serialize for RejectReason
impl StructuralPartialEq for RejectReason
Auto Trait Implementations§
impl Freeze for RejectReason
impl RefUnwindSafe for RejectReason
impl Send for RejectReason
impl Sync for RejectReason
impl Unpin for RejectReason
impl UnsafeUnpin for RejectReason
impl UnwindSafe for RejectReason
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