pub enum EncryptItemResult {
Ok {
cipherstring: String,
},
Err {
error: String,
},
}Variants§
Trait Implementations§
Source§impl Debug for EncryptItemResult
impl Debug for EncryptItemResult
Source§impl<'de> Deserialize<'de> for EncryptItemResult
impl<'de> Deserialize<'de> for EncryptItemResult
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 EncryptItemResult
impl RefUnwindSafe for EncryptItemResult
impl Send for EncryptItemResult
impl Sync for EncryptItemResult
impl Unpin for EncryptItemResult
impl UnsafeUnpin for EncryptItemResult
impl UnwindSafe for EncryptItemResult
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