Struct gapi_grpc::google::cloud::security::privateca::v1beta1::SubjectAltNames[][src]

pub struct SubjectAltNames {
    pub dns_names: Vec<String>,
    pub uris: Vec<String>,
    pub email_addresses: Vec<String>,
    pub ip_addresses: Vec<String>,
    pub custom_sans: Vec<X509Extension>,
}

[SubjectAltNames][google.cloud.security.privateca.v1beta1.SubjectAltNames] corresponds to a more modern way of listing what the asserted identity is in a certificate (i.e., compared to the “common name” in the distinguished name).

Fields

dns_names: Vec<String>

Contains only valid, fully-qualified host names.

uris: Vec<String>

Contains only valid RFC 3986 URIs.

email_addresses: Vec<String>

Contains only valid RFC 2822 E-mail addresses.

ip_addresses: Vec<String>

Contains only valid 32-bit IPv4 addresses or RFC 4291 IPv6 addresses.

custom_sans: Vec<X509Extension>

Contains additional subject alternative name values.

Trait Implementations

impl Clone for SubjectAltNames[src]

impl Debug for SubjectAltNames[src]

impl Default for SubjectAltNames[src]

impl Message for SubjectAltNames[src]

impl PartialEq<SubjectAltNames> for SubjectAltNames[src]

impl StructuralPartialEq for SubjectAltNames[src]

Auto Trait Implementations

impl RefUnwindSafe for SubjectAltNames

impl Send for SubjectAltNames

impl Sync for SubjectAltNames

impl Unpin for SubjectAltNames

impl UnwindSafe for SubjectAltNames

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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]