pub struct TargetedMessageRxCounter {
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 TargetedMessageRxCounter
impl BorrowPrimaryKey for TargetedMessageRxCounter
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 TargetedMessageRxCounter
impl Clone for TargetedMessageRxCounter
Source§fn clone(&self) -> TargetedMessageRxCounter
fn clone(&self) -> TargetedMessageRxCounter
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 TargetedMessageRxCounter
impl Debug for TargetedMessageRxCounter
Source§impl DeletableBySearchKey<ConversationEpochsOlderThan> for TargetedMessageRxCounter
impl DeletableBySearchKey<ConversationEpochsOlderThan> for TargetedMessageRxCounter
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 TargetedMessageRxCounter
impl<'de> Deserialize<'de> for TargetedMessageRxCounter
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 TargetedMessageRxCounter
impl Entity for TargetedMessageRxCounter
Source§const TABLE_NAME: &'static str = Self::TABLE_NAME
const TABLE_NAME: &'static 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 TargetedMessageRxCounter
impl EntityDatabaseMutation for TargetedMessageRxCounter
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 TargetedMessageRxCounter
impl EntityDeleteBorrowed for TargetedMessageRxCounter
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 TargetedMessageRxCounter
impl EntityGetBorrowed for TargetedMessageRxCounter
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 TargetedMessageRxCounter
Source§impl PartialEq for TargetedMessageRxCounter
impl PartialEq for TargetedMessageRxCounter
Source§fn eq(&self, other: &TargetedMessageRxCounter) -> bool
fn eq(&self, other: &TargetedMessageRxCounter) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PrimaryKey for TargetedMessageRxCounter
impl PrimaryKey for TargetedMessageRxCounter
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 TargetedMessageRxCounter
impl SearchableEntity<ConversationEpochsOlderThan> for TargetedMessageRxCounter
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
Source§impl Serialize for TargetedMessageRxCounter
impl Serialize for TargetedMessageRxCounter
impl StructuralPartialEq for TargetedMessageRxCounter
Source§impl ToValue for TargetedMessageRxCounter
impl ToValue for TargetedMessageRxCounter
Auto Trait Implementations§
impl Freeze for TargetedMessageRxCounter
impl RefUnwindSafe for TargetedMessageRxCounter
impl Send for TargetedMessageRxCounter
impl Sync for TargetedMessageRxCounter
impl Unpin for TargetedMessageRxCounter
impl UnsafeUnpin for TargetedMessageRxCounter
impl UnwindSafe for TargetedMessageRxCounter
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