pub enum Document {
Show 25 variants
Pacs008(Box<FIToFICustomerCreditTransferV08>),
Pacs002(Box<FIToFIPaymentStatusReportV10>),
Pacs003(Box<FIToFICustomerDirectDebitV08>),
Pacs004(Box<PaymentReturnV09>),
Pacs009(Box<FinancialInstitutionCreditTransferV08>),
Pacs010(Box<FinancialInstitutionDirectDebitV03>),
Pain001(Box<CustomerCreditTransferInitiationV09>),
Pain002(Box<CustomerPaymentStatusReportV10>),
Pain008(Box<CustomerDirectDebitInitiationV08>),
Camt025(Box<ReceiptV08>),
Camt029(Box<ResolutionOfInvestigationV09>),
Camt052(Box<BankToCustomerAccountReportV08>),
Camt053(Box<BankToCustomerStatementV08>),
Camt054(Box<BankToCustomerDebitCreditNotificationV08>),
Camt055(Box<CustomerPaymentCancellationRequestV08>),
Camt056(Box<FIToFIPaymentCancellationRequestV08>),
Camt058(Box<NotificationToReceiveCancellationAdviceV08>),
Camt057(Box<NotificationToReceiveV06>),
Camt060(Box<AccountReportingRequestV05>),
Camt105(Box<ChargesPaymentNotificationV02>),
Camt106(Box<ChargesPaymentRequestV02>),
Camt107(Box<ChequePresentmentNotificationV01>),
Camt108(Box<ChequeCancellationOrStopRequestV01>),
Camt109(Box<ChequeCancellationOrStopReportV01>),
Admi024(Box<NotificationOfCorrespondenceV01>),
}Expand description
Document enum - represents the Document element in MX messages Each variant uses serde rename to match the XML element name Box wrappers are used to prevent stack overflow from large variants
Variants§
Pacs008(Box<FIToFICustomerCreditTransferV08>)
Pacs002(Box<FIToFIPaymentStatusReportV10>)
Pacs003(Box<FIToFICustomerDirectDebitV08>)
Pacs004(Box<PaymentReturnV09>)
Pacs009(Box<FinancialInstitutionCreditTransferV08>)
Pacs010(Box<FinancialInstitutionDirectDebitV03>)
Pain001(Box<CustomerCreditTransferInitiationV09>)
Pain002(Box<CustomerPaymentStatusReportV10>)
Pain008(Box<CustomerDirectDebitInitiationV08>)
Camt025(Box<ReceiptV08>)
Camt029(Box<ResolutionOfInvestigationV09>)
Camt052(Box<BankToCustomerAccountReportV08>)
Camt053(Box<BankToCustomerStatementV08>)
Camt054(Box<BankToCustomerDebitCreditNotificationV08>)
Camt055(Box<CustomerPaymentCancellationRequestV08>)
Camt056(Box<FIToFIPaymentCancellationRequestV08>)
Camt058(Box<NotificationToReceiveCancellationAdviceV08>)
Camt057(Box<NotificationToReceiveV06>)
Camt060(Box<AccountReportingRequestV05>)
Camt105(Box<ChargesPaymentNotificationV02>)
Camt106(Box<ChargesPaymentRequestV02>)
Camt107(Box<ChequePresentmentNotificationV01>)
Camt108(Box<ChequeCancellationOrStopRequestV01>)
Camt109(Box<ChequeCancellationOrStopReportV01>)
Admi024(Box<NotificationOfCorrespondenceV01>)
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Document
impl<'de> Deserialize<'de> for Document
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 StructuralPartialEq for Document
Auto Trait Implementations§
impl Freeze for Document
impl RefUnwindSafe for Document
impl Send for Document
impl Sync for Document
impl Unpin for Document
impl UnwindSafe for Document
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,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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