pub struct SingleTypedAsyncIterable<'a> {
    pub attributes: Option<ExtendedAttributeList<'a>>,
    pub async_iterable: (Async, Iterable),
    pub generics: Generics<AttributedType<'a>>,
    pub args: Option<Parenthesized<ArgumentList<'a>>>,
    pub semi_colon: SemiColon,
}Expand description
Parses an async iterable declaration [attributes]? async iterable<attributedtype> (( args ))? ;
Fields§
§attributes: Option<ExtendedAttributeList<'a>>§async_iterable: (Async, Iterable)§generics: Generics<AttributedType<'a>>§args: Option<Parenthesized<ArgumentList<'a>>>§semi_colon: SemiColonTrait Implementations§
Source§impl<'a> Clone for SingleTypedAsyncIterable<'a>
 
impl<'a> Clone for SingleTypedAsyncIterable<'a>
Source§fn clone(&self) -> SingleTypedAsyncIterable<'a>
 
fn clone(&self) -> SingleTypedAsyncIterable<'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 SingleTypedAsyncIterable<'a>
 
impl<'a> Debug for SingleTypedAsyncIterable<'a>
Source§impl<'a> From<SingleTypedAsyncIterable<'a>> for AsyncIterableInterfaceMember<'a>
 
impl<'a> From<SingleTypedAsyncIterable<'a>> for AsyncIterableInterfaceMember<'a>
Source§fn from(x: SingleTypedAsyncIterable<'a>) -> Self
 
fn from(x: SingleTypedAsyncIterable<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> Hash for SingleTypedAsyncIterable<'a>
 
impl<'a> Hash for SingleTypedAsyncIterable<'a>
Source§impl<'a> Ord for SingleTypedAsyncIterable<'a>
 
impl<'a> Ord for SingleTypedAsyncIterable<'a>
Source§fn cmp(&self, other: &SingleTypedAsyncIterable<'a>) -> Ordering
 
fn cmp(&self, other: &SingleTypedAsyncIterable<'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 SingleTypedAsyncIterable<'a>
 
impl<'a> Parse<'a> for SingleTypedAsyncIterable<'a>
Source§impl<'a> PartialEq for SingleTypedAsyncIterable<'a>
 
impl<'a> PartialEq for SingleTypedAsyncIterable<'a>
Source§fn eq(&self, other: &SingleTypedAsyncIterable<'a>) -> bool
 
fn eq(&self, other: &SingleTypedAsyncIterable<'a>) -> bool
Tests for 
self and other values to be equal, and is used by ==.Source§impl<'a> PartialOrd for SingleTypedAsyncIterable<'a>
 
impl<'a> PartialOrd for SingleTypedAsyncIterable<'a>
impl<'a> Eq for SingleTypedAsyncIterable<'a>
impl<'a> StructuralPartialEq for SingleTypedAsyncIterable<'a>
Auto Trait Implementations§
impl<'a> Freeze for SingleTypedAsyncIterable<'a>
impl<'a> RefUnwindSafe for SingleTypedAsyncIterable<'a>
impl<'a> Send for SingleTypedAsyncIterable<'a>
impl<'a> Sync for SingleTypedAsyncIterable<'a>
impl<'a> Unpin for SingleTypedAsyncIterable<'a>
impl<'a> UnwindSafe for SingleTypedAsyncIterable<'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