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