pub enum ProcessingMethod {
FullyAutomated,
SemiAutomated,
Manual,
}Expand description
How transactions within the SCOT are processed.
Variants§
FullyAutomated
System-initiated and system-posted — no manual intervention in normal processing.
SemiAutomated
System-initiated but requires manual approval or manual journal entry for certain steps (e.g. three-way match exception handling).
Manual
Primarily manual processing — spreadsheet-based, clerk-prepared, etc.
Trait Implementations§
Source§impl Clone for ProcessingMethod
impl Clone for ProcessingMethod
Source§fn clone(&self) -> ProcessingMethod
fn clone(&self) -> ProcessingMethod
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 ProcessingMethod
impl Debug for ProcessingMethod
Source§impl<'de> Deserialize<'de> for ProcessingMethod
impl<'de> Deserialize<'de> for ProcessingMethod
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
Source§impl Display for ProcessingMethod
impl Display for ProcessingMethod
Source§impl Hash for ProcessingMethod
impl Hash for ProcessingMethod
Source§impl PartialEq for ProcessingMethod
impl PartialEq for ProcessingMethod
Source§impl Serialize for ProcessingMethod
impl Serialize for ProcessingMethod
impl Copy for ProcessingMethod
impl Eq for ProcessingMethod
impl StructuralPartialEq for ProcessingMethod
Auto Trait Implementations§
impl Freeze for ProcessingMethod
impl RefUnwindSafe for ProcessingMethod
impl Send for ProcessingMethod
impl Sync for ProcessingMethod
impl Unpin for ProcessingMethod
impl UnsafeUnpin for ProcessingMethod
impl UnwindSafe for ProcessingMethod
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.