pub struct NoDestinationIdentityTable;Trait Implementations§
Source§impl Clone for NoDestinationIdentityTable
impl Clone for NoDestinationIdentityTable
Source§fn clone(&self) -> NoDestinationIdentityTable
fn clone(&self) -> NoDestinationIdentityTable
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for NoDestinationIdentityTable
Source§impl Debug for NoDestinationIdentityTable
impl Debug for NoDestinationIdentityTable
Source§impl Default for NoDestinationIdentityTable
impl Default for NoDestinationIdentityTable
Source§fn default() -> NoDestinationIdentityTable
fn default() -> NoDestinationIdentityTable
Returns the “default value” for a type. Read more
Source§impl DestinationIdentityTable for NoDestinationIdentityTable
impl DestinationIdentityTable for NoDestinationIdentityTable
fn capacity(&self) -> usize
fn len(&self) -> usize
fn destinations(&self) -> &[DestinationHash]
fn public_keys(&self) -> &[IdentityPublicKeys]
fn announced_at(&self) -> &[InstantMillis]
fn retention(&self) -> &[DestinationIdentityRetentionState]
fn app_data_handles(&self) -> &[AppDataHandle]
fn set_row(&mut self, _: usize, _: DestinationIdentityRecord)
fn push( &mut self, _: DestinationHash, _: DestinationIdentityRecord, ) -> Result<usize, TablePushError>
fn swap_remove(&mut self, _: usize)
fn is_empty(&self) -> bool
fn index_of(&self, destination: &DestinationHash) -> Option<usize>
Auto Trait Implementations§
impl Freeze for NoDestinationIdentityTable
impl RefUnwindSafe for NoDestinationIdentityTable
impl Send for NoDestinationIdentityTable
impl Sync for NoDestinationIdentityTable
impl Unpin for NoDestinationIdentityTable
impl UnsafeUnpin for NoDestinationIdentityTable
impl UnwindSafe for NoDestinationIdentityTable
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