pub struct AList<A> {
pub elems: Vec<A>,
}
Expand description
A list of attributes. This corresponds to the a_list
non-terminal of the
grammar.
Fields§
§elems: Vec<A>
The attributes in the list.
Trait Implementations§
Source§impl<A> FromIterator<A> for AList<A>
impl<A> FromIterator<A> for AList<A>
Source§fn from_iter<T>(iter: T) -> Selfwhere
T: IntoIterator<Item = A>,
fn from_iter<T>(iter: T) -> Selfwhere
T: IntoIterator<Item = A>,
Creates a value from an iterator. Read more
Source§impl<A> FromIterator<AList<A>> for AttrList<A>
impl<A> FromIterator<AList<A>> for AttrList<A>
Source§impl<'a, A> IntoIterator for &'a AList<A>
impl<'a, A> IntoIterator for &'a AList<A>
Source§impl<A> IntoIterator for AList<A>
impl<A> IntoIterator for AList<A>
Source§impl<A: Ord> Ord for AList<A>
impl<A: Ord> Ord for AList<A>
Source§impl<A: PartialOrd> PartialOrd for AList<A>
impl<A: PartialOrd> PartialOrd for AList<A>
Source§impl<'a> TryFrom<Pair<'a, Rule>> for AList<(&'a str, &'a str)>
impl<'a> TryFrom<Pair<'a, Rule>> for AList<(&'a str, &'a str)>
Source§type Error = ParseError<'a>
type Error = ParseError<'a>
The type returned in the event of a conversion error.
Source§impl<'a> TryFrom<Pair<'a, Rule>> for AList<(String, String)>
impl<'a> TryFrom<Pair<'a, Rule>> for AList<(String, String)>
Source§type Error = ParseError<'a>
type Error = ParseError<'a>
The type returned in the event of a conversion error.
impl<A: Eq> Eq for AList<A>
impl<A> StructuralPartialEq for AList<A>
Auto Trait Implementations§
impl<A> Freeze for AList<A>
impl<A> RefUnwindSafe for AList<A>where
A: RefUnwindSafe,
impl<A> Send for AList<A>where
A: Send,
impl<A> Sync for AList<A>where
A: Sync,
impl<A> Unpin for AList<A>where
A: Unpin,
impl<A> UnwindSafe for AList<A>where
A: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more