pub struct PullResult {
pub success: bool,
pub new_wal_head: Option<Oid>,
pub events_pulled: usize,
pub message: String,
}Expand description
Result of a pull operation
Fields§
§success: boolWhether the pull succeeded
new_wal_head: Option<Oid>New WAL head after pull (if changed)
events_pulled: usizeNumber of new events pulled
message: StringMessage describing what happened
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PullResult
impl RefUnwindSafe for PullResult
impl Send for PullResult
impl Sync for PullResult
impl Unpin for PullResult
impl UnsafeUnpin for PullResult
impl UnwindSafe for PullResult
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