pub struct HpkeOpenKeyFromFileRequest {
pub key: KeyId,
pub sealed_key: PathBuf,
pub sealed_location: Location,
pub unsealed_location: Location,
pub aad: ShortData,
pub info: ShortData,
}Expand description
Open with a private key
As described in 6.1 with mode “base”
Fields§
§key: KeyId§sealed_key: PathBuf§sealed_location: Location§unsealed_location: Location§aad: ShortData§info: ShortDataTrait Implementations§
Source§impl<'de> Deserialize<'de> for HpkeOpenKeyFromFileRequest
impl<'de> Deserialize<'de> for HpkeOpenKeyFromFileRequest
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<HpkeOpenKeyFromFileRequest> for HpkeRequest
impl From<HpkeOpenKeyFromFileRequest> for HpkeRequest
Source§fn from(value: HpkeOpenKeyFromFileRequest) -> Self
fn from(value: HpkeOpenKeyFromFileRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for HpkeOpenKeyFromFileRequest
impl RefUnwindSafe for HpkeOpenKeyFromFileRequest
impl Send for HpkeOpenKeyFromFileRequest
impl Sync for HpkeOpenKeyFromFileRequest
impl Unpin for HpkeOpenKeyFromFileRequest
impl UnwindSafe for HpkeOpenKeyFromFileRequest
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