pub struct DecryptedExposed<Data> { /* private fields */ }
Expand description
represents data that has been decrypted, but still needs to be deserialized doesn’t make the assumption that data is sensitive
Trait Implementations§
Source§impl<Data: Debug> Debug for DecryptedExposed<Data>
impl<Data: Debug> Debug for DecryptedExposed<Data>
Source§impl<'de, Data> Deserialize<'de> for DecryptedExposed<Data>
impl<'de, Data> Deserialize<'de> for DecryptedExposed<Data>
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<Data> Freeze for DecryptedExposed<Data>
impl<Data> RefUnwindSafe for DecryptedExposed<Data>where
Data: RefUnwindSafe,
impl<Data> Send for DecryptedExposed<Data>where
Data: Send,
impl<Data> Sync for DecryptedExposed<Data>where
Data: Sync,
impl<Data> Unpin for DecryptedExposed<Data>where
Data: Unpin,
impl<Data> UnwindSafe for DecryptedExposed<Data>where
Data: UnwindSafe,
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