pub struct EncryptedLogEntry {
pub ciphertext: String,
pub nonce: String,
pub timestamp: DateTime<Utc>,
pub entry_id: String,
}Expand description
Encrypted log entry structure
Fields§
§ciphertext: String§nonce: String§timestamp: DateTime<Utc>§entry_id: StringTrait Implementations§
Source§impl Clone for EncryptedLogEntry
impl Clone for EncryptedLogEntry
Source§fn clone(&self) -> EncryptedLogEntry
fn clone(&self) -> EncryptedLogEntry
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 EncryptedLogEntry
impl Debug for EncryptedLogEntry
Source§impl<'de> Deserialize<'de> for EncryptedLogEntry
impl<'de> Deserialize<'de> for EncryptedLogEntry
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
Auto Trait Implementations§
impl Freeze for EncryptedLogEntry
impl RefUnwindSafe for EncryptedLogEntry
impl Send for EncryptedLogEntry
impl Sync for EncryptedLogEntry
impl Unpin for EncryptedLogEntry
impl UnwindSafe for EncryptedLogEntry
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