pub struct DoubleTypedIterable<'a> {
pub attributes: Option<ExtendedAttributeList<'a>>,
pub iterable: Iterable,
pub generics: Generics<(AttributedType<'a>, Comma, AttributedType<'a>)>,
pub semi_colon: SemiColon,
}
Expand description
Parses an iterable declaration [attributes]? iterable<attributedtype, attributedtype>;
Fields§
§attributes: Option<ExtendedAttributeList<'a>>
§iterable: Iterable
§generics: Generics<(AttributedType<'a>, Comma, AttributedType<'a>)>
§semi_colon: SemiColon
Trait Implementations§
Source§impl<'a> Clone for DoubleTypedIterable<'a>
impl<'a> Clone for DoubleTypedIterable<'a>
Source§fn clone(&self) -> DoubleTypedIterable<'a>
fn clone(&self) -> DoubleTypedIterable<'a>
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> Debug for DoubleTypedIterable<'a>
impl<'a> Debug for DoubleTypedIterable<'a>
Source§impl<'a> From<DoubleTypedIterable<'a>> for IterableInterfaceMember<'a>
impl<'a> From<DoubleTypedIterable<'a>> for IterableInterfaceMember<'a>
Source§fn from(x: DoubleTypedIterable<'a>) -> Self
fn from(x: DoubleTypedIterable<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> Hash for DoubleTypedIterable<'a>
impl<'a> Hash for DoubleTypedIterable<'a>
Source§impl<'a> Ord for DoubleTypedIterable<'a>
impl<'a> Ord for DoubleTypedIterable<'a>
Source§fn cmp(&self, other: &DoubleTypedIterable<'a>) -> Ordering
fn cmp(&self, other: &DoubleTypedIterable<'a>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> Parse<'a> for DoubleTypedIterable<'a>
impl<'a> Parse<'a> for DoubleTypedIterable<'a>
Source§impl<'a> PartialEq for DoubleTypedIterable<'a>
impl<'a> PartialEq for DoubleTypedIterable<'a>
Source§impl<'a> PartialOrd for DoubleTypedIterable<'a>
impl<'a> PartialOrd for DoubleTypedIterable<'a>
impl<'a> Eq for DoubleTypedIterable<'a>
impl<'a> StructuralPartialEq for DoubleTypedIterable<'a>
Auto Trait Implementations§
impl<'a> Freeze for DoubleTypedIterable<'a>
impl<'a> RefUnwindSafe for DoubleTypedIterable<'a>
impl<'a> Send for DoubleTypedIterable<'a>
impl<'a> Sync for DoubleTypedIterable<'a>
impl<'a> Unpin for DoubleTypedIterable<'a>
impl<'a> UnwindSafe for DoubleTypedIterable<'a>
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