[][src]Struct rusoto_cloudtrail::PublicKey

pub struct PublicKey {
    pub fingerprint: Option<String>,
    pub validity_end_time: Option<f64>,
    pub validity_start_time: Option<f64>,
    pub value: Option<Bytes>,
}

Contains information about a returned public key.

Fields

fingerprint: Option<String>

The fingerprint of the public key.

validity_end_time: Option<f64>

The ending time of validity of the public key.

validity_start_time: Option<f64>

The starting time of validity of the public key.

value: Option<Bytes>

The DER encoded public key value in PKCS#1 format.

Trait Implementations

impl Clone for PublicKey[src]

impl Default for PublicKey[src]

impl PartialEq<PublicKey> for PublicKey[src]

impl Debug for PublicKey[src]

impl StructuralPartialEq for PublicKey[src]

impl<'de> Deserialize<'de> for PublicKey[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self