pub struct Braced<T>(pub T);Expand description
Parses inner type braced.
Implements EasyPeek and peeks opening brace.
Tuple Fields
0: TTrait Implementations
sourceimpl<T> EasyPeek for Braced<T> where
T: Parse,
impl<T> EasyPeek for Braced<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: Ord> Ord for Braced<T>
impl<T: Ord> Ord for Braced<T>
sourceimpl<T> Parse for Braced<T> where
T: Parse,
impl<T> Parse for Braced<T> where
T: Parse,
fn parse(input: ParseStream<'_>) -> Result<Self>
sourceimpl<T: PartialOrd> PartialOrd<Braced<T>> for Braced<T>
impl<T: PartialOrd> PartialOrd<Braced<T>> for Braced<T>
sourcefn partial_cmp(&self, other: &Braced<T>) -> Option<Ordering>
fn partial_cmp(&self, other: &Braced<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 Braced<T>
impl<T: Eq> Eq for Braced<T>
impl<T> StructuralEq for Braced<T>
impl<T> StructuralPartialEq for Braced<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for Braced<T> where
T: RefUnwindSafe,
impl<T> Send for Braced<T> where
T: Send,
impl<T> Sync for Braced<T> where
T: Sync,
impl<T> Unpin for Braced<T> where
T: Unpin,
impl<T> UnwindSafe for Braced<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)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more