pub struct FinishedIndication {
pub id: TransactionID,
pub report: Report,
pub file_status: FileStatusCode,
pub delivery_code: DeliveryCode,
}Expand description
Indication sent when a transaction has finished.
Fields§
§id: TransactionIDUnique transaction ID.
report: ReportFinal report of the transaction before shutting down.
file_status: FileStatusCodeThe status of the file delivered if applicable.
delivery_code: DeliveryCodeThe final delivery result.
Trait Implementations§
Source§impl Clone for FinishedIndication
impl Clone for FinishedIndication
Source§fn clone(&self) -> FinishedIndication
fn clone(&self) -> FinishedIndication
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 moreAuto Trait Implementations§
impl Freeze for FinishedIndication
impl RefUnwindSafe for FinishedIndication
impl Send for FinishedIndication
impl Sync for FinishedIndication
impl Unpin for FinishedIndication
impl UnsafeUnpin for FinishedIndication
impl UnwindSafe for FinishedIndication
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