pub enum AckReasonCode {
FullyAccepted,
FullyRejected,
SyntaxError,
AssignmentError,
DocumentIdNotUnique,
SenderUnauthorised,
NotPermitted,
FormatVersionInvalid,
ReportPeriodInvalid,
}Expand description
Reason codes used at the AcknowledgementDocument root level.
Variants§
FullyAccepted
Message fully accepted.
FullyRejected
Message fully rejected.
SyntaxError
Syntax error detected.
AssignmentError
Assignment error.
DocumentIdNotUnique
Document identification not unique.
Sender not authorised.
NotPermitted
Not permitted per AWT (Anwendungstabelle).
FormatVersionInvalid
Format version invalid.
ReportPeriodInvalid
Report period invalid.
Trait Implementations§
Source§impl Clone for AckReasonCode
impl Clone for AckReasonCode
Source§fn clone(&self) -> AckReasonCode
fn clone(&self) -> AckReasonCode
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 AckReasonCode
Source§impl Debug for AckReasonCode
impl Debug for AckReasonCode
Source§impl<'de> Deserialize<'de> for AckReasonCode
impl<'de> Deserialize<'de> for AckReasonCode
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 AckReasonCode
Source§impl Hash for AckReasonCode
impl Hash for AckReasonCode
Source§impl PartialEq for AckReasonCode
impl PartialEq for AckReasonCode
Source§fn eq(&self, other: &AckReasonCode) -> bool
fn eq(&self, other: &AckReasonCode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AckReasonCode
impl Serialize for AckReasonCode
impl StructuralPartialEq for AckReasonCode
Auto Trait Implementations§
impl Freeze for AckReasonCode
impl RefUnwindSafe for AckReasonCode
impl Send for AckReasonCode
impl Sync for AckReasonCode
impl Unpin for AckReasonCode
impl UnsafeUnpin for AckReasonCode
impl UnwindSafe for AckReasonCode
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