pub struct ScreeningConfigurationsRequest {
pub bypass_screening_during_service_outages: Option<bool>,
pub inbound_transaction_delay: Option<f64>,
pub outbound_transaction_delay: Option<f64>,
}
Fields§
§bypass_screening_during_service_outages: Option<bool>
Flag to enable or disable bypass screening during service outages.
inbound_transaction_delay: Option<f64>
Inbound transaction delay in seconds.
outbound_transaction_delay: Option<f64>
Outbound transaction delay in seconds.
Implementations§
Trait Implementations§
Source§impl Clone for ScreeningConfigurationsRequest
impl Clone for ScreeningConfigurationsRequest
Source§fn clone(&self) -> ScreeningConfigurationsRequest
fn clone(&self) -> ScreeningConfigurationsRequest
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 Default for ScreeningConfigurationsRequest
impl Default for ScreeningConfigurationsRequest
Source§fn default() -> ScreeningConfigurationsRequest
fn default() -> ScreeningConfigurationsRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScreeningConfigurationsRequest
impl<'de> Deserialize<'de> for ScreeningConfigurationsRequest
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 PartialEq for ScreeningConfigurationsRequest
impl PartialEq for ScreeningConfigurationsRequest
Source§fn eq(&self, other: &ScreeningConfigurationsRequest) -> bool
fn eq(&self, other: &ScreeningConfigurationsRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ScreeningConfigurationsRequest
Auto Trait Implementations§
impl Freeze for ScreeningConfigurationsRequest
impl RefUnwindSafe for ScreeningConfigurationsRequest
impl Send for ScreeningConfigurationsRequest
impl Sync for ScreeningConfigurationsRequest
impl Unpin for ScreeningConfigurationsRequest
impl UnwindSafe for ScreeningConfigurationsRequest
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