pub struct TransientMessageRxCounter {
pub conversation_id: ConversationId,
pub sender: u32,
pub epoch: u64,
pub count: u32,
}Fields§
§conversation_id: ConversationId§sender: u32§epoch: u64§count: u32Trait Implementations§
Source§impl BorrowPrimaryKey for TransientMessageRxCounter
impl BorrowPrimaryKey for TransientMessageRxCounter
type BorrowedPrimaryKey<'a> = MessageRxCounterPkRef<'a>
Source§fn borrow_primary_key(&self) -> Self::BorrowedPrimaryKey<'_>
fn borrow_primary_key(&self) -> Self::BorrowedPrimaryKey<'_>
Borrow this entity’s primary key without copying any data. Read more
Source§impl Clone for TransientMessageRxCounter
impl Clone for TransientMessageRxCounter
Source§fn clone(&self) -> TransientMessageRxCounter
fn clone(&self) -> TransientMessageRxCounter
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 moreSource§impl Debug for TransientMessageRxCounter
impl Debug for TransientMessageRxCounter
Source§impl DeletableBySearchKey<ConversationEpochsOlderThan> for TransientMessageRxCounter
impl DeletableBySearchKey<ConversationEpochsOlderThan> for TransientMessageRxCounter
Source§fn delete_all_matching<'a, Tx>(
tx: &'a Tx,
conversation_epoch: &ConversationEpochsOlderThan,
) -> CryptoKeystoreResult<()>
fn delete_all_matching<'a, Tx>( tx: &'a Tx, conversation_epoch: &ConversationEpochsOlderThan, ) -> CryptoKeystoreResult<()>
Delete all entities matching the search key. Read more
Source§impl<'de> Deserialize<'de> for TransientMessageRxCounter
impl<'de> Deserialize<'de> for TransientMessageRxCounter
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Entity for TransientMessageRxCounter
impl Entity for TransientMessageRxCounter
Source§const TABLE_NAME: &str = Self::TABLE_NAME
const TABLE_NAME: &str = Self::TABLE_NAME
The name of the SQL table for this entity
Source§fn get(
conn: &Connection,
key: &MessageRxCounterPk,
) -> CryptoKeystoreResult<Option<Self>>
fn get( conn: &Connection, key: &MessageRxCounterPk, ) -> CryptoKeystoreResult<Option<Self>>
Get an entity by its primary key. Read more
Source§fn count(conn: &Connection) -> CryptoKeystoreResult<u32>
fn count(conn: &Connection) -> CryptoKeystoreResult<u32>
Count the number of entities of this type in the database.
Source§fn load_all(conn: &Connection) -> CryptoKeystoreResult<Vec<Self>>
fn load_all(conn: &Connection) -> CryptoKeystoreResult<Vec<Self>>
Retrieve all entities of this type from the database.
Source§impl EntityDatabaseMutation for TransientMessageRxCounter
impl EntityDatabaseMutation for TransientMessageRxCounter
Source§fn save<'a, Tx>(&self, tx: &'a Tx) -> CryptoKeystoreResult<()>
fn save<'a, Tx>(&self, tx: &'a Tx) -> CryptoKeystoreResult<()>
Save this entity to the database in the context of this transaction. Read more
Source§fn delete<'a, Tx>(
tx: &'a Tx,
primary_key: &MessageRxCounterPk,
) -> CryptoKeystoreResult<bool>
fn delete<'a, Tx>( tx: &'a Tx, primary_key: &MessageRxCounterPk, ) -> CryptoKeystoreResult<bool>
Use the transaction’s inteface to delete this entity from the database. Read more
Source§impl EntityDeleteBorrowed for TransientMessageRxCounter
impl EntityDeleteBorrowed for TransientMessageRxCounter
Source§fn delete_borrowed<'a, Tx>(
tx: &'a Tx,
key: Self::BorrowedPrimaryKey<'_>,
) -> CryptoKeystoreResult<bool>
fn delete_borrowed<'a, Tx>( tx: &'a Tx, key: Self::BorrowedPrimaryKey<'_>, ) -> CryptoKeystoreResult<bool>
Delete an entity by a borrowed form of its primary key.
Source§impl EntityGetBorrowed for TransientMessageRxCounter
impl EntityGetBorrowed for TransientMessageRxCounter
Source§fn get_borrowed(
conn: &Connection,
key: Self::BorrowedPrimaryKey<'_>,
) -> CryptoKeystoreResult<Option<Self>>
fn get_borrowed( conn: &Connection, key: Self::BorrowedPrimaryKey<'_>, ) -> CryptoKeystoreResult<Option<Self>>
Get an entity by a borrowed form of its primary key.
impl Eq for TransientMessageRxCounter
Source§impl PartialEq for TransientMessageRxCounter
impl PartialEq for TransientMessageRxCounter
Source§fn eq(&self, other: &TransientMessageRxCounter) -> bool
fn eq(&self, other: &TransientMessageRxCounter) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PrimaryKey for TransientMessageRxCounter
impl PrimaryKey for TransientMessageRxCounter
Source§type PrimaryKey = MessageRxCounterPk
type PrimaryKey = MessageRxCounterPk
Each distinct
PrimaryKey uniquely identifies either 0 or 1 instance. Read moreSource§fn primary_key(&self) -> Self::PrimaryKey
fn primary_key(&self) -> Self::PrimaryKey
Get this entity’s primary key. Read more
Source§impl SearchableEntity<ConversationEpochsOlderThan> for TransientMessageRxCounter
impl SearchableEntity<ConversationEpochsOlderThan> for TransientMessageRxCounter
Source§fn find_all_matching(
conn: &Connection,
conversation_epoch: &ConversationEpochsOlderThan,
) -> CryptoKeystoreResult<Vec<Self>>
fn find_all_matching( conn: &Connection, conversation_epoch: &ConversationEpochsOlderThan, ) -> CryptoKeystoreResult<Vec<Self>>
Find all entities matching the search key. Read more
impl StructuralPartialEq for TransientMessageRxCounter
Auto Trait Implementations§
impl Freeze for TransientMessageRxCounter
impl RefUnwindSafe for TransientMessageRxCounter
impl Send for TransientMessageRxCounter
impl Sync for TransientMessageRxCounter
impl Unpin for TransientMessageRxCounter
impl UnsafeUnpin for TransientMessageRxCounter
impl UnwindSafe for TransientMessageRxCounter
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more