pub enum IterableInterfaceMember<'a> {
Single(SingleTypedIterable<'a>),
Double(DoubleTypedIterable<'a>),
}
Expand description
Parses an iterable declaration [attributes]? (iterable<attributedtype> | iterable<attributedtype, attributedtype>) ;
Variants§
Single(SingleTypedIterable<'a>)
Double(DoubleTypedIterable<'a>)
Trait Implementations§
Source§impl<'a> Clone for IterableInterfaceMember<'a>
impl<'a> Clone for IterableInterfaceMember<'a>
Source§fn clone(&self) -> IterableInterfaceMember<'a>
fn clone(&self) -> IterableInterfaceMember<'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 IterableInterfaceMember<'a>
impl<'a> Debug for IterableInterfaceMember<'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> From<IterableInterfaceMember<'a>> for InterfaceMember<'a>
impl<'a> From<IterableInterfaceMember<'a>> for InterfaceMember<'a>
Source§fn from(x: IterableInterfaceMember<'a>) -> Self
fn from(x: IterableInterfaceMember<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<SingleTypedIterable<'a>> for IterableInterfaceMember<'a>
impl<'a> From<SingleTypedIterable<'a>> for IterableInterfaceMember<'a>
Source§fn from(x: SingleTypedIterable<'a>) -> Self
fn from(x: SingleTypedIterable<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> Hash for IterableInterfaceMember<'a>
impl<'a> Hash for IterableInterfaceMember<'a>
Source§impl<'a> Ord for IterableInterfaceMember<'a>
impl<'a> Ord for IterableInterfaceMember<'a>
Source§fn cmp(&self, other: &IterableInterfaceMember<'a>) -> Ordering
fn cmp(&self, other: &IterableInterfaceMember<'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 IterableInterfaceMember<'a>
impl<'a> Parse<'a> for IterableInterfaceMember<'a>
Source§impl<'a> PartialEq for IterableInterfaceMember<'a>
impl<'a> PartialEq for IterableInterfaceMember<'a>
Source§impl<'a> PartialOrd for IterableInterfaceMember<'a>
impl<'a> PartialOrd for IterableInterfaceMember<'a>
impl<'a> Eq for IterableInterfaceMember<'a>
impl<'a> StructuralPartialEq for IterableInterfaceMember<'a>
Auto Trait Implementations§
impl<'a> Freeze for IterableInterfaceMember<'a>
impl<'a> RefUnwindSafe for IterableInterfaceMember<'a>
impl<'a> Send for IterableInterfaceMember<'a>
impl<'a> Sync for IterableInterfaceMember<'a>
impl<'a> Unpin for IterableInterfaceMember<'a>
impl<'a> UnwindSafe for IterableInterfaceMember<'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