Struct openssl::x509::GeneralNames [] [src]

pub struct GeneralNames<'a> {
    // some fields omitted
}

A collection of OpenSSL GENERAL_NAMEs.

Methods

impl<'a> GeneralNames<'a>
[src]

Returns the number of GeneralNames in this structure.

Returns the specified GeneralName.

Panics

Panics if idx is not less than len().

Returns an iterator over the GeneralNames in this structure.

Trait Implementations

impl<'a> IntoIterator for &'a GeneralNames<'a>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more