pub struct EncryptItem {
pub plaintext: String,
pub org_id: Option<String>,
}Fields§
§plaintext: String§org_id: Option<String>Trait Implementations§
Source§impl Clone for EncryptItem
impl Clone for EncryptItem
Source§fn clone(&self) -> EncryptItem
fn clone(&self) -> EncryptItem
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 EncryptItem
impl Debug for EncryptItem
Source§impl<'de> Deserialize<'de> for EncryptItem
impl<'de> Deserialize<'de> for EncryptItem
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 EncryptItem
impl RefUnwindSafe for EncryptItem
impl Send for EncryptItem
impl Sync for EncryptItem
impl Unpin for EncryptItem
impl UnsafeUnpin for EncryptItem
impl UnwindSafe for EncryptItem
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