pub struct TableObserverHandle(/* private fields */);
Expand description
Handle for a TableObserver
.
Trait Implementations§
Source§impl Clone for TableObserverHandle
impl Clone for TableObserverHandle
Source§fn clone(&self) -> TableObserverHandle
fn clone(&self) -> TableObserverHandle
Returns a duplicate of the value. Read more
1.0.0 · 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 TableObserverHandle
impl Debug for TableObserverHandle
Source§impl Default for TableObserverHandle
impl Default for TableObserverHandle
Source§fn default() -> TableObserverHandle
fn default() -> TableObserverHandle
Returns the “default value” for a type. Read more
Source§impl From<KeyData> for TableObserverHandle
impl From<KeyData> for TableObserverHandle
Source§impl Hash for TableObserverHandle
impl Hash for TableObserverHandle
Source§impl Key for TableObserverHandle
impl Key for TableObserverHandle
Source§fn null() -> Self
fn null() -> Self
Creates a new key that is always invalid and distinct from any non-null
key. A null key can only be created through this method (or default
initialization of keys made with
new_key_type!
, which calls this
method). Read moreSource§impl Ord for TableObserverHandle
impl Ord for TableObserverHandle
Source§fn cmp(&self, other: &TableObserverHandle) -> Ordering
fn cmp(&self, other: &TableObserverHandle) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TableObserverHandle
impl PartialEq for TableObserverHandle
Source§impl PartialOrd for TableObserverHandle
impl PartialOrd for TableObserverHandle
impl Copy for TableObserverHandle
impl Eq for TableObserverHandle
impl StructuralPartialEq for TableObserverHandle
Auto Trait Implementations§
impl Freeze for TableObserverHandle
impl RefUnwindSafe for TableObserverHandle
impl Send for TableObserverHandle
impl Sync for TableObserverHandle
impl Unpin for TableObserverHandle
impl UnwindSafe for TableObserverHandle
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