pub enum WimRejectionReason {
MeloUnknown,
NotResponsible,
DeviceCategoryNotSupported,
RolloutPreconditionNotMet,
CapacityExhausted,
Other,
}Expand description
Rejection reason code for a WiM Ablehnung response.
Variants§
MeloUnknown
MeLo does not exist in the MSB’s service territory.
NotResponsible
MSB is not responsible for this MeLo.
DeviceCategoryNotSupported
Requested device category is not installable at this MeLo.
RolloutPreconditionNotMet
Regulatory prerequisites for iMSys rollout not yet met.
CapacityExhausted
MSB technical capacity exhausted.
Other
Other / unspecified reason; see reason_text for details.
Trait Implementations§
Source§impl Clone for WimRejectionReason
impl Clone for WimRejectionReason
Source§fn clone(&self) -> WimRejectionReason
fn clone(&self) -> WimRejectionReason
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 moreSource§impl Debug for WimRejectionReason
impl Debug for WimRejectionReason
Source§impl<'de> Deserialize<'de> for WimRejectionReason
impl<'de> Deserialize<'de> for WimRejectionReason
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
impl Eq for WimRejectionReason
Source§impl PartialEq for WimRejectionReason
impl PartialEq for WimRejectionReason
Source§fn eq(&self, other: &WimRejectionReason) -> bool
fn eq(&self, other: &WimRejectionReason) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WimRejectionReason
impl Serialize for WimRejectionReason
impl StructuralPartialEq for WimRejectionReason
Auto Trait Implementations§
impl Freeze for WimRejectionReason
impl RefUnwindSafe for WimRejectionReason
impl Send for WimRejectionReason
impl Sync for WimRejectionReason
impl Unpin for WimRejectionReason
impl UnsafeUnpin for WimRejectionReason
impl UnwindSafe for WimRejectionReason
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