pub struct DocumentFlowSnapshot {
pub p2p_chains: Vec<P2PDocumentChain>,
pub o2c_chains: Vec<O2CDocumentChain>,
pub purchase_orders: Vec<PurchaseOrder>,
pub goods_receipts: Vec<GoodsReceipt>,
pub vendor_invoices: Vec<VendorInvoice>,
pub sales_orders: Vec<SalesOrder>,
pub deliveries: Vec<Delivery>,
pub customer_invoices: Vec<CustomerInvoice>,
pub payments: Vec<Payment>,
}Expand description
Document flow snapshot containing all generated document chains.
Fields§
§p2p_chains: Vec<P2PDocumentChain>P2P document chains.
o2c_chains: Vec<O2CDocumentChain>O2C document chains.
purchase_orders: Vec<PurchaseOrder>All purchase orders (flattened).
goods_receipts: Vec<GoodsReceipt>All goods receipts (flattened).
vendor_invoices: Vec<VendorInvoice>All vendor invoices (flattened).
sales_orders: Vec<SalesOrder>All sales orders (flattened).
deliveries: Vec<Delivery>All deliveries (flattened).
customer_invoices: Vec<CustomerInvoice>All customer invoices (flattened).
payments: Vec<Payment>All payments (flattened).
Trait Implementations§
Source§impl Clone for DocumentFlowSnapshot
impl Clone for DocumentFlowSnapshot
Source§fn clone(&self) -> DocumentFlowSnapshot
fn clone(&self) -> DocumentFlowSnapshot
Returns a duplicate of the value. Read more
1.0.0 · 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 DocumentFlowSnapshot
impl Debug for DocumentFlowSnapshot
Source§impl Default for DocumentFlowSnapshot
impl Default for DocumentFlowSnapshot
Source§fn default() -> DocumentFlowSnapshot
fn default() -> DocumentFlowSnapshot
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DocumentFlowSnapshot
impl RefUnwindSafe for DocumentFlowSnapshot
impl Send for DocumentFlowSnapshot
impl Sync for DocumentFlowSnapshot
impl Unpin for DocumentFlowSnapshot
impl UnwindSafe for DocumentFlowSnapshot
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