pub struct VaultEncryptResult {
pub encrypted_data: String,
pub context: HashMap<String, String>,
pub encrypted_keys: String,
}Expand description
Result of crate::resources::VaultApi::encrypt.
Fields§
§encrypted_data: String§context: HashMap<String, String>§encrypted_keys: StringTrait Implementations§
Source§impl Clone for VaultEncryptResult
impl Clone for VaultEncryptResult
Source§fn clone(&self) -> VaultEncryptResult
fn clone(&self) -> VaultEncryptResult
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 moreAuto Trait Implementations§
impl Freeze for VaultEncryptResult
impl RefUnwindSafe for VaultEncryptResult
impl Send for VaultEncryptResult
impl Sync for VaultEncryptResult
impl Unpin for VaultEncryptResult
impl UnsafeUnpin for VaultEncryptResult
impl UnwindSafe for VaultEncryptResult
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