Struct security_framework::os::macos::certificate::PropertySection [−][src]
pub struct PropertySection(_);
Expand description
A “section” property.
Sections are sequences of other properties.
Implementations
impl PropertySection
[src]
impl PropertySection
[src]pub fn iter<'a>(&'a self) -> PropertySectionIter<'a>ⓘNotable traits for PropertySectionIter<'a>
impl<'a> Iterator for PropertySectionIter<'a> type Item = CertificateProperty;
[src]
pub fn iter<'a>(&'a self) -> PropertySectionIter<'a>ⓘNotable traits for PropertySectionIter<'a>
impl<'a> Iterator for PropertySectionIter<'a> type Item = CertificateProperty;
[src]Returns an iterator over the properties in this section.
Trait Implementations
impl<'a> IntoIterator for &'a PropertySection
[src]
impl<'a> IntoIterator for &'a PropertySection
[src]type IntoIter = PropertySectionIter<'a>
type IntoIter = PropertySectionIter<'a>
Which kind of iterator are we turning this into?
type Item = CertificateProperty
type Item = CertificateProperty
The type of the elements being iterated over.
fn into_iter(self) -> PropertySectionIter<'a>ⓘNotable traits for PropertySectionIter<'a>
impl<'a> Iterator for PropertySectionIter<'a> type Item = CertificateProperty;
[src]
fn into_iter(self) -> PropertySectionIter<'a>ⓘNotable traits for PropertySectionIter<'a>
impl<'a> Iterator for PropertySectionIter<'a> type Item = CertificateProperty;
[src]Creates an iterator from a value. Read more