pub struct ResyncPlan {
pub query: PageQuery,
pub next_poll_after: Duration,
}Available on crate feature
client only.Expand description
What to pull, and when to pull again.
Fields§
§query: PageQueryThe query for the catch-up pull.
next_poll_after: DurationHow long to wait before the next routine poll.
Trait Implementations§
Source§impl Clone for ResyncPlan
impl Clone for ResyncPlan
Source§fn clone(&self) -> ResyncPlan
fn clone(&self) -> ResyncPlan
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 moreSource§impl Debug for ResyncPlan
impl Debug for ResyncPlan
impl Eq for ResyncPlan
Source§impl PartialEq for ResyncPlan
impl PartialEq for ResyncPlan
impl StructuralPartialEq for ResyncPlan
Auto Trait Implementations§
impl Freeze for ResyncPlan
impl RefUnwindSafe for ResyncPlan
impl Send for ResyncPlan
impl Sync for ResyncPlan
impl Unpin for ResyncPlan
impl UnsafeUnpin for ResyncPlan
impl UnwindSafe for ResyncPlan
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.