pub struct EncryptOutput {
pub result: Option<String>,
}Fields§
§result: Option<String>Implementations§
Source§impl EncryptOutput
impl EncryptOutput
pub fn new() -> EncryptOutput
Trait Implementations§
Source§impl Clone for EncryptOutput
impl Clone for EncryptOutput
Source§fn clone(&self) -> EncryptOutput
fn clone(&self) -> EncryptOutput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EncryptOutput
impl Debug for EncryptOutput
Source§impl Default for EncryptOutput
impl Default for EncryptOutput
Source§fn default() -> EncryptOutput
fn default() -> EncryptOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EncryptOutput
impl<'de> Deserialize<'de> for EncryptOutput
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 PartialEq for EncryptOutput
impl PartialEq for EncryptOutput
Source§fn eq(&self, other: &EncryptOutput) -> bool
fn eq(&self, other: &EncryptOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EncryptOutput
impl Serialize for EncryptOutput
impl StructuralPartialEq for EncryptOutput
Auto Trait Implementations§
impl Freeze for EncryptOutput
impl RefUnwindSafe for EncryptOutput
impl Send for EncryptOutput
impl Sync for EncryptOutput
impl Unpin for EncryptOutput
impl UnsafeUnpin for EncryptOutput
impl UnwindSafe for EncryptOutput
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