pub struct WireSettlementConfig {
pub cutoff_time: NaiveTime,
pub before_cutoff: SettlementType,
pub after_cutoff: SettlementType,
}Expand description
Configuration for wire transfer settlement.
Fields§
§cutoff_time: NaiveTimeCutoff time for same-day processing (e.g., “14:00”)
before_cutoff: SettlementTypeSettlement type when before cutoff
after_cutoff: SettlementTypeSettlement type when after cutoff
Trait Implementations§
Source§impl Clone for WireSettlementConfig
impl Clone for WireSettlementConfig
Source§fn clone(&self) -> WireSettlementConfig
fn clone(&self) -> WireSettlementConfig
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 WireSettlementConfig
impl Debug for WireSettlementConfig
Source§impl Default for WireSettlementConfig
impl Default for WireSettlementConfig
Source§impl<'de> Deserialize<'de> for WireSettlementConfig
impl<'de> Deserialize<'de> for WireSettlementConfig
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 WireSettlementConfig
impl RefUnwindSafe for WireSettlementConfig
impl Send for WireSettlementConfig
impl Sync for WireSettlementConfig
impl Unpin for WireSettlementConfig
impl UnwindSafe for WireSettlementConfig
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