pub struct SyncEvent {
pub operation: &'static str,
pub parent: Option<String>,
pub page_number: usize,
pub nodes_received: usize,
pub page_size: usize,
pub adaptive_reduction: bool,
pub completed: bool,
pub failure: Option<String>,
}Fields§
§operation: &'static str§parent: Option<String>§page_number: usize§nodes_received: usize§page_size: usize§adaptive_reduction: bool§completed: bool§failure: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for SyncEvent
impl RefUnwindSafe for SyncEvent
impl Send for SyncEvent
impl Sync for SyncEvent
impl Unpin for SyncEvent
impl UnsafeUnpin for SyncEvent
impl UnwindSafe for SyncEvent
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