pub struct TntSecret {
pub conversation_id: ConversationId,
pub epoch: u64,
pub hpke_private_key: Vec<u8>,
pub group_context: Vec<u8>,
pub targeted_message_psk: Vec<u8>,
}Fields§
§conversation_id: ConversationId§epoch: u64§hpke_private_key: Vec<u8>§group_context: Vec<u8>§targeted_message_psk: Vec<u8>Trait Implementations§
Source§impl BorrowPrimaryKey for TntSecret
impl BorrowPrimaryKey for TntSecret
type BorrowedPrimaryKey<'a> = TntSecretPkRef<'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 DeletableBySearchKey<ConversationEpochsOlderThan> for TntSecret
impl DeletableBySearchKey<ConversationEpochsOlderThan> for TntSecret
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 TntSecret
impl<'de> Deserialize<'de> for TntSecret
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 TntSecret
impl Entity for TntSecret
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: &TntSecretPk,
) -> CryptoKeystoreResult<Option<Self>>
fn get( conn: &Connection, key: &TntSecretPk, ) -> 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 TntSecret
impl EntityDatabaseMutation for TntSecret
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, key: &TntSecretPk) -> CryptoKeystoreResult<bool>
fn delete<'a, Tx>(tx: &'a Tx, key: &TntSecretPk) -> CryptoKeystoreResult<bool>
Use the transaction’s inteface to delete this entity from the database. Read more
Source§impl EntityDeleteBorrowed for TntSecret
impl EntityDeleteBorrowed for TntSecret
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 TntSecret
impl EntityGetBorrowed for TntSecret
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 TntSecret
Source§impl PrimaryKey for TntSecret
impl PrimaryKey for TntSecret
Source§type PrimaryKey = TntSecretPk
type PrimaryKey = TntSecretPk
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 TntSecret
impl SearchableEntity<ConversationEpochsOlderThan> for TntSecret
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 TntSecret
Auto Trait Implementations§
impl Freeze for TntSecret
impl RefUnwindSafe for TntSecret
impl Send for TntSecret
impl Sync for TntSecret
impl Unpin for TntSecret
impl UnsafeUnpin for TntSecret
impl UnwindSafe for TntSecret
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