[][src]Struct tink_proto::AesGcmKeyFormat

pub struct AesGcmKeyFormat {
    pub key_size: u32,
    pub version: u32,
}

only allowing IV size in bytes = 12 and tag size in bytes = 16 Thus, accept no params.

Fields

key_size: u32version: u32

Trait Implementations

impl Clone for AesGcmKeyFormat[src]

impl Debug for AesGcmKeyFormat[src]

impl Default for AesGcmKeyFormat[src]

impl Message for AesGcmKeyFormat[src]

impl PartialEq<AesGcmKeyFormat> for AesGcmKeyFormat[src]

impl StructuralPartialEq for AesGcmKeyFormat[src]

Auto Trait Implementations

impl RefUnwindSafe for AesGcmKeyFormat

impl Send for AesGcmKeyFormat

impl Sync for AesGcmKeyFormat

impl Unpin for AesGcmKeyFormat

impl UnwindSafe for AesGcmKeyFormat

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.