Struct openssl::x509::GeneralNames
[−]
[src]
pub struct GeneralNames<'a> { // some fields omitted }
A collection of OpenSSL GENERAL_NAME
s.
Methods
impl<'a> GeneralNames<'a>
[src]
fn len(&self) -> usize
Returns the number of GeneralName
s in this structure.
fn get(&self, idx: usize) -> GeneralName<'a>
fn iter(&self) -> GeneralNamesIter
Returns an iterator over the GeneralName
s in this structure.
Trait Implementations
impl<'a> IntoIterator for &'a GeneralNames<'a>
[src]
type Item = GeneralName<'a>
The type of the elements being iterated over.
type IntoIter = GeneralNamesIter<'a>
Which kind of iterator are we turning this into?
fn into_iter(self) -> GeneralNamesIter<'a>
Creates an iterator from a value. Read more