pub struct TransparentSymmetricKey {
pub key: Vec<u8>,
}
Expand description
See KMIP 1.0 section 2.1.7.1 Transparent Symmetric Key.
Fields§
§key: Vec<u8>
Trait Implementations§
Source§impl Clone for TransparentSymmetricKey
impl Clone for TransparentSymmetricKey
Source§fn clone(&self) -> TransparentSymmetricKey
fn clone(&self) -> TransparentSymmetricKey
Returns a duplicate of the value. Read more
1.0.0 · 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 TransparentSymmetricKey
impl Debug for TransparentSymmetricKey
Source§impl<'de> Deserialize<'de> for TransparentSymmetricKey
impl<'de> Deserialize<'de> for TransparentSymmetricKey
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 TransparentSymmetricKey
impl PartialEq for TransparentSymmetricKey
Source§impl Serialize for TransparentSymmetricKey
impl Serialize for TransparentSymmetricKey
impl Eq for TransparentSymmetricKey
impl StructuralPartialEq for TransparentSymmetricKey
Auto Trait Implementations§
impl Freeze for TransparentSymmetricKey
impl RefUnwindSafe for TransparentSymmetricKey
impl Send for TransparentSymmetricKey
impl Sync for TransparentSymmetricKey
impl Unpin for TransparentSymmetricKey
impl UnwindSafe for TransparentSymmetricKey
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