pub struct OperationMixinMember<'a> {
pub attributes: Option<ExtendedAttributeList<'a>>,
pub stringifier: Option<Stringifier>,
pub return_type: ReturnType<'a>,
pub identifier: Option<Identifier<'a>>,
pub args: Parenthesized<ArgumentList<'a>>,
pub semi_colon: SemiColon,
}
Expand description
Parses [attributes]? stringifier? returntype identifier? (( args ));
(( )) means ( ) chars
Fields§
§attributes: Option<ExtendedAttributeList<'a>>
§stringifier: Option<Stringifier>
§return_type: ReturnType<'a>
§identifier: Option<Identifier<'a>>
§args: Parenthesized<ArgumentList<'a>>
§semi_colon: SemiColon
Trait Implementations§
Source§impl<'a> Clone for OperationMixinMember<'a>
impl<'a> Clone for OperationMixinMember<'a>
Source§fn clone(&self) -> OperationMixinMember<'a>
fn clone(&self) -> OperationMixinMember<'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 OperationMixinMember<'a>
impl<'a> Debug for OperationMixinMember<'a>
Source§impl<'a> From<OperationMixinMember<'a>> for MixinMember<'a>
impl<'a> From<OperationMixinMember<'a>> for MixinMember<'a>
Source§fn from(x: OperationMixinMember<'a>) -> Self
fn from(x: OperationMixinMember<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> Hash for OperationMixinMember<'a>
impl<'a> Hash for OperationMixinMember<'a>
Source§impl<'a> Ord for OperationMixinMember<'a>
impl<'a> Ord for OperationMixinMember<'a>
Source§fn cmp(&self, other: &OperationMixinMember<'a>) -> Ordering
fn cmp(&self, other: &OperationMixinMember<'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 OperationMixinMember<'a>
impl<'a> Parse<'a> for OperationMixinMember<'a>
Source§impl<'a> PartialEq for OperationMixinMember<'a>
impl<'a> PartialEq for OperationMixinMember<'a>
Source§impl<'a> PartialOrd for OperationMixinMember<'a>
impl<'a> PartialOrd for OperationMixinMember<'a>
impl<'a> Eq for OperationMixinMember<'a>
impl<'a> StructuralPartialEq for OperationMixinMember<'a>
Auto Trait Implementations§
impl<'a> Freeze for OperationMixinMember<'a>
impl<'a> RefUnwindSafe for OperationMixinMember<'a>
impl<'a> Send for OperationMixinMember<'a>
impl<'a> Sync for OperationMixinMember<'a>
impl<'a> Unpin for OperationMixinMember<'a>
impl<'a> UnwindSafe for OperationMixinMember<'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