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