pub struct RetryPredicate {
pub nodes: Vec<PredicateNode>,
}Expand description
A composable predicate tree for matching retry contexts. Root is nodes[0]. Children referenced by predicate-node-index.
Fields§
§nodes: Vec<PredicateNode>Trait Implementations§
Source§impl Clone for RetryPredicate
impl Clone for RetryPredicate
Source§fn clone(&self) -> RetryPredicate
fn clone(&self) -> RetryPredicate
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 RetryPredicate
impl Debug for RetryPredicate
Auto Trait Implementations§
impl Freeze for RetryPredicate
impl RefUnwindSafe for RetryPredicate
impl Send for RetryPredicate
impl Sync for RetryPredicate
impl Unpin for RetryPredicate
impl UnsafeUnpin for RetryPredicate
impl UnwindSafe for RetryPredicate
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