Struct proc_easy::EasyParenthesized
source · [−]pub struct EasyParenthesized<T>(pub T);
Expand description
Parses inner type parenthesized.
Implements EasyPeek
and peeks opening parenthesis.
Tuple Fields
0: T
Trait Implementations
sourceimpl<T: Clone> Clone for EasyParenthesized<T>
impl<T: Clone> Clone for EasyParenthesized<T>
sourcefn clone(&self) -> EasyParenthesized<T>
fn clone(&self) -> EasyParenthesized<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<T: Debug> Debug for EasyParenthesized<T>
impl<T: Debug> Debug for EasyParenthesized<T>
sourceimpl<T: Default> Default for EasyParenthesized<T>
impl<T: Default> Default for EasyParenthesized<T>
sourcefn default() -> EasyParenthesized<T>
fn default() -> EasyParenthesized<T>
Returns the “default value” for a type. Read more
sourceimpl<T> Deref for EasyParenthesized<T>
impl<T> Deref for EasyParenthesized<T>
sourceimpl<T> EasyPeek for EasyParenthesized<T> where
T: Parse,
impl<T> EasyPeek for EasyParenthesized<T> where
T: Parse,
sourcefn peek(lookahead1: &Lookahead1<'_>) -> bool
fn peek(lookahead1: &Lookahead1<'_>) -> bool
Peek head token before parsing.
sourcefn peek_stream(stream: ParseStream<'_>) -> bool
fn peek_stream(stream: ParseStream<'_>) -> bool
Peek head token before parsing.
sourceimpl<T: Hash> Hash for EasyParenthesized<T>
impl<T: Hash> Hash for EasyParenthesized<T>
sourceimpl<T: Ord> Ord for EasyParenthesized<T>
impl<T: Ord> Ord for EasyParenthesized<T>
sourceimpl<T> Parse for EasyParenthesized<T> where
T: Parse,
impl<T> Parse for EasyParenthesized<T> where
T: Parse,
fn parse(input: ParseStream<'_>) -> Result<Self>
sourceimpl<T: PartialEq> PartialEq<EasyParenthesized<T>> for EasyParenthesized<T>
impl<T: PartialEq> PartialEq<EasyParenthesized<T>> for EasyParenthesized<T>
sourcefn eq(&self, other: &EasyParenthesized<T>) -> bool
fn eq(&self, other: &EasyParenthesized<T>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &EasyParenthesized<T>) -> bool
fn ne(&self, other: &EasyParenthesized<T>) -> bool
This method tests for !=
.
sourceimpl<T: PartialOrd> PartialOrd<EasyParenthesized<T>> for EasyParenthesized<T>
impl<T: PartialOrd> PartialOrd<EasyParenthesized<T>> for EasyParenthesized<T>
sourcefn partial_cmp(&self, other: &EasyParenthesized<T>) -> Option<Ordering>
fn partial_cmp(&self, other: &EasyParenthesized<T>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl<T> Spanned for EasyParenthesized<T> where
T: Spanned,
impl<T> Spanned for EasyParenthesized<T> where
T: Spanned,
sourcefn span(&self) -> Span
fn span(&self) -> Span
Returns a Span
covering the complete contents of this syntax tree
node, or Span::call_site()
if this node is empty. Read more
impl<T: Copy> Copy for EasyParenthesized<T>
impl<T: Eq> Eq for EasyParenthesized<T>
impl<T> StructuralEq for EasyParenthesized<T>
impl<T> StructuralPartialEq for EasyParenthesized<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for EasyParenthesized<T> where
T: RefUnwindSafe,
impl<T> Send for EasyParenthesized<T> where
T: Send,
impl<T> Sync for EasyParenthesized<T> where
T: Sync,
impl<T> Unpin for EasyParenthesized<T> where
T: Unpin,
impl<T> UnwindSafe for EasyParenthesized<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more