pub type FeatureList<'a> = RecordList<'a, Feature<'a>>;
Expand description
A list of Feature
records.
Aliased Type§
struct FeatureList<'a> { /* private fields */ }
Implementations
source§impl<'a, T> RecordList<'a, T>where
T: RecordListItem<'a>,
impl<'a, T> RecordList<'a, T>where
T: RecordListItem<'a>,
Trait Implementations
source§impl<'a, T> Clone for RecordList<'a, T>where
T: Clone + RecordListItem<'a>,
impl<'a, T> Clone for RecordList<'a, T>where
T: Clone + RecordListItem<'a>,
source§fn clone(&self) -> RecordList<'a, T>
fn clone(&self) -> RecordList<'a, T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'a, T> Debug for RecordList<'a, T>where
T: Debug + RecordListItem<'a>,
impl<'a, T> Debug for RecordList<'a, T>where
T: Debug + RecordListItem<'a>,
source§impl<'a, T> IntoIterator for RecordList<'a, T>where
T: RecordListItem<'a>,
impl<'a, T> IntoIterator for RecordList<'a, T>where
T: RecordListItem<'a>,
source§type IntoIter = RecordListIter<'a, T>
type IntoIter = RecordListIter<'a, T>
Which kind of iterator are we turning this into?
source§fn into_iter(self) -> <RecordList<'a, T> as IntoIterator>::IntoIter
fn into_iter(self) -> <RecordList<'a, T> as IntoIterator>::IntoIter
Creates an iterator from a value. Read more