pub struct WatchScan<'db, 'w> { /* private fields */ }
Expand description
Watch multiple values.
Implementations§
Source§impl WatchScan<'_, '_>
Watch multiple values.
impl WatchScan<'_, '_>
Watch multiple values.
Sourcepub fn primary(&self) -> WatchScanPrimary<'_, '_>
pub fn primary(&self) -> WatchScanPrimary<'_, '_>
Watch all values.
Sourcepub fn secondary(
&self,
key_def: impl KeyDefinition<DatabaseSecondaryKeyOptions>,
) -> WatchScanSecondary<'_, '_>
pub fn secondary( &self, key_def: impl KeyDefinition<DatabaseSecondaryKeyOptions>, ) -> WatchScanSecondary<'_, '_>
Watch all values by secondary key.
Auto Trait Implementations§
impl<'db, 'w> Freeze for WatchScan<'db, 'w>
impl<'db, 'w> RefUnwindSafe for WatchScan<'db, 'w>
impl<'db, 'w> Send for WatchScan<'db, 'w>
impl<'db, 'w> Sync for WatchScan<'db, 'w>
impl<'db, 'w> Unpin for WatchScan<'db, 'w>
impl<'db, 'w> UnwindSafe for WatchScan<'db, 'w>
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