#[non_exhaustive]pub enum AggregatePolicy {
FirstErrorWins,
AnySuccess,
AlwaysSucceed,
}Available on crate feature
hub only.Expand description
How a fan-out’s results become one answer for the sender.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
FirstErrorWins
Report the first failure. The safe default: the sender learns something went wrong.
AnySuccess
Report success as long as one party accepted the message.
AlwaysSucceed
Always report success; the hub owns delivery from here.
Trait Implementations§
Source§impl Clone for AggregatePolicy
impl Clone for AggregatePolicy
Source§fn clone(&self) -> AggregatePolicy
fn clone(&self) -> AggregatePolicy
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AggregatePolicy
Source§impl Debug for AggregatePolicy
impl Debug for AggregatePolicy
impl Eq for AggregatePolicy
Source§impl PartialEq for AggregatePolicy
impl PartialEq for AggregatePolicy
impl StructuralPartialEq for AggregatePolicy
Auto Trait Implementations§
impl Freeze for AggregatePolicy
impl RefUnwindSafe for AggregatePolicy
impl Send for AggregatePolicy
impl Sync for AggregatePolicy
impl Unpin for AggregatePolicy
impl UnsafeUnpin for AggregatePolicy
impl UnwindSafe for AggregatePolicy
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.