pub struct ScanHandle {
pub node_id: NodeId,
/* private fields */
}Expand description
Handle to a log scan. Call ScanHandle::detach to dispose the
scan subscription (no RAII — D246 r3).
Fields§
§node_id: NodeIdThe state node backing this scan. Subscribe to receive accumulator snapshots.
Implementations§
Auto Trait Implementations§
impl Freeze for ScanHandle
impl RefUnwindSafe for ScanHandle
impl Send for ScanHandle
impl Sync for ScanHandle
impl Unpin for ScanHandle
impl UnsafeUnpin for ScanHandle
impl UnwindSafe for ScanHandle
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