pub struct RekeyBatchRequest {
pub encrypted_attributes: Vec<EncryptedAttribute>,
pub session_from: EncryptionContext,
pub session_to: EncryptionContext,
}Expand description
An API request to transcrypt a single encrypted attribute.
Fields§
§encrypted_attributes: Vec<EncryptedAttribute>The encrypted datas.
session_from: EncryptionContextThe session the attributes were encrypted in associated with this server.
session_to: EncryptionContextThe session the attributes should be decryptable in associated with this server.
Trait Implementations§
Source§impl Debug for RekeyBatchRequest
impl Debug for RekeyBatchRequest
Source§impl<'de> Deserialize<'de> for RekeyBatchRequest
impl<'de> Deserialize<'de> for RekeyBatchRequest
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
Auto Trait Implementations§
impl Freeze for RekeyBatchRequest
impl RefUnwindSafe for RekeyBatchRequest
impl Send for RekeyBatchRequest
impl Sync for RekeyBatchRequest
impl Unpin for RekeyBatchRequest
impl UnwindSafe for RekeyBatchRequest
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