[][src]Struct openshift_openapi::api::image::v1::SignatureIssuer

pub struct SignatureIssuer {
    pub common_name: Option<String>,
    pub organization: Option<String>,
}

SignatureIssuer holds information about an issuer of signing certificate or key.

Fields

common_name: Option<String>

Common name (e.g. openshift-signing-service).

organization: Option<String>

Organization name.

Trait Implementations

impl Clone for SignatureIssuer[src]

impl Debug for SignatureIssuer[src]

impl Default for SignatureIssuer[src]

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

impl PartialEq<SignatureIssuer> for SignatureIssuer[src]

impl Serialize for SignatureIssuer[src]

impl StructuralPartialEq for SignatureIssuer[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.