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 UnsafeUnpin 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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.