Struct proc_easy::Parenthesized
source · [−]pub struct Parenthesized<T>(pub T);Expand description
Parses inner type parenthesized.
Implements EasyPeek and peeks opening parenthesis.
Tuple Fields
0: TTrait Implementations
sourceimpl<T: Clone> Clone for Parenthesized<T>
impl<T: Clone> Clone for Parenthesized<T>
sourcefn clone(&self) -> Parenthesized<T>
fn clone(&self) -> Parenthesized<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 Parenthesized<T>
impl<T: Debug> Debug for Parenthesized<T>
sourceimpl<T: Default> Default for Parenthesized<T>
impl<T: Default> Default for Parenthesized<T>
sourcefn default() -> Parenthesized<T>
fn default() -> Parenthesized<T>
Returns the “default value” for a type. Read more
sourceimpl<T> Deref for Parenthesized<T>
impl<T> Deref for Parenthesized<T>
sourceimpl<T> EasyPeek for Parenthesized<T> where
T: Parse,
impl<T> EasyPeek for Parenthesized<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 Parenthesized<T>
impl<T: Hash> Hash for Parenthesized<T>
sourceimpl<T: Ord> Ord for Parenthesized<T>
impl<T: Ord> Ord for Parenthesized<T>
sourceimpl<T> Parse for Parenthesized<T> where
T: Parse,
impl<T> Parse for Parenthesized<T> where
T: Parse,
fn parse(input: ParseStream<'_>) -> Result<Self>
sourceimpl<T: PartialEq> PartialEq<Parenthesized<T>> for Parenthesized<T>
impl<T: PartialEq> PartialEq<Parenthesized<T>> for Parenthesized<T>
sourcefn eq(&self, other: &Parenthesized<T>) -> bool
fn eq(&self, other: &Parenthesized<T>) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &Parenthesized<T>) -> bool
fn ne(&self, other: &Parenthesized<T>) -> bool
This method tests for !=.
sourceimpl<T: PartialOrd> PartialOrd<Parenthesized<T>> for Parenthesized<T>
impl<T: PartialOrd> PartialOrd<Parenthesized<T>> for Parenthesized<T>
sourcefn partial_cmp(&self, other: &Parenthesized<T>) -> Option<Ordering>
fn partial_cmp(&self, other: &Parenthesized<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
impl<T: Copy> Copy for Parenthesized<T>
impl<T: Eq> Eq for Parenthesized<T>
impl<T> StructuralEq for Parenthesized<T>
impl<T> StructuralPartialEq for Parenthesized<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for Parenthesized<T> where
T: RefUnwindSafe,
impl<T> Send for Parenthesized<T> where
T: Send,
impl<T> Sync for Parenthesized<T> where
T: Sync,
impl<T> Unpin for Parenthesized<T> where
T: Unpin,
impl<T> UnwindSafe for Parenthesized<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