pub struct RecipientListConfig {
pub expression: RecipientListExpression,
pub delimiter: String,
pub parallel: bool,
pub parallel_limit: Option<usize>,
pub stop_on_exception: bool,
pub strategy: MulticastStrategy,
}Fields§
§expression: RecipientListExpression§delimiter: String§parallel: bool§parallel_limit: Option<usize>§stop_on_exception: bool§strategy: MulticastStrategyImplementations§
Source§impl RecipientListConfig
impl RecipientListConfig
pub fn new(expression: RecipientListExpression) -> Self
pub fn delimiter(self, d: impl Into<String>) -> Self
pub fn parallel(self, parallel: bool) -> Self
pub fn parallel_limit(self, limit: usize) -> Self
pub fn stop_on_exception(self, stop: bool) -> Self
pub fn strategy(self, strategy: MulticastStrategy) -> Self
Trait Implementations§
Source§impl Clone for RecipientListConfig
impl Clone for RecipientListConfig
Source§fn clone(&self) -> RecipientListConfig
fn clone(&self) -> RecipientListConfig
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 moreAuto Trait Implementations§
impl Freeze for RecipientListConfig
impl !RefUnwindSafe for RecipientListConfig
impl Send for RecipientListConfig
impl Sync for RecipientListConfig
impl Unpin for RecipientListConfig
impl UnsafeUnpin for RecipientListConfig
impl !UnwindSafe for RecipientListConfig
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