pub enum SweepTrigger {
Manual,
Incoming,
BalanceThreshold,
AutomaticAggregate,
}Expand description
The trigger of the sweep
"manual" - The sweep is created manually by the customer
"incoming" - The sweep is created by incoming funds flow (e.g. Incoming Wire)
"balance_threshold" - The sweep is created by balance threshold setting
"automatic_aggregate" - The sweep is created by the Plaid automatic aggregation process. These funds did not pass through the Plaid Ledger balance.
Variants§
Trait Implementations§
Source§impl Clone for SweepTrigger
impl Clone for SweepTrigger
Source§fn clone(&self) -> SweepTrigger
fn clone(&self) -> SweepTrigger
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 SweepTrigger
impl Debug for SweepTrigger
Source§impl<'de> Deserialize<'de> for SweepTrigger
impl<'de> Deserialize<'de> for SweepTrigger
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
Auto Trait Implementations§
impl Freeze for SweepTrigger
impl RefUnwindSafe for SweepTrigger
impl Send for SweepTrigger
impl Sync for SweepTrigger
impl Unpin for SweepTrigger
impl UnwindSafe for SweepTrigger
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