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