pub enum WrapKeyToFileReply {
WrapKeyToFile(WrapKeyToFile),
UnwrapKeyFromFile(UnwrapKeyFromFile),
}Variants§
WrapKeyToFile(WrapKeyToFile)
UnwrapKeyFromFile(UnwrapKeyFromFile)
Trait Implementations§
Source§impl Debug for WrapKeyToFileReply
impl Debug for WrapKeyToFileReply
Source§impl<'de> Deserialize<'de> for WrapKeyToFileReply
impl<'de> Deserialize<'de> for WrapKeyToFileReply
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 From<UnwrapKeyFromFile> for WrapKeyToFileReply
impl From<UnwrapKeyFromFile> for WrapKeyToFileReply
Source§fn from(reply: UnwrapKeyFromFile) -> Self
fn from(reply: UnwrapKeyFromFile) -> Self
Converts to this type from the input type.
Source§impl From<WrapKeyToFile> for WrapKeyToFileReply
impl From<WrapKeyToFile> for WrapKeyToFileReply
Source§fn from(reply: WrapKeyToFile) -> Self
fn from(reply: WrapKeyToFile) -> Self
Converts to this type from the input type.
Source§impl Serialize for WrapKeyToFileReply
impl Serialize for WrapKeyToFileReply
Source§impl TryFrom<WrapKeyToFileReply> for WrapKeyToFile
impl TryFrom<WrapKeyToFileReply> for WrapKeyToFile
Auto Trait Implementations§
impl Freeze for WrapKeyToFileReply
impl RefUnwindSafe for WrapKeyToFileReply
impl Send for WrapKeyToFileReply
impl Sync for WrapKeyToFileReply
impl Unpin for WrapKeyToFileReply
impl UnsafeUnpin for WrapKeyToFileReply
impl UnwindSafe for WrapKeyToFileReply
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