Struct syn::token::Paren
[−]
[src]
pub struct Paren(pub Span);
(...)
Methods
impl Paren
[src]
pub fn surround<F>(&self, tokens: &mut TokenStream, f: F) where
F: FnOnce(&mut TokenStream),
[src]
F: FnOnce(&mut TokenStream),
pub fn parse<F, R>(tokens: Cursor, f: F) -> PResult<(Paren, R)> where
F: FnOnce(Cursor) -> PResult<R>,
[src]
F: FnOnce(Cursor) -> PResult<R>,
Trait Implementations
impl Copy for Paren
[src]
impl Clone for Paren
[src]
fn clone(&self) -> Paren
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Default for Paren
[src]
impl Debug for Paren
[src]
fn fmt(&self, f: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl Eq for Paren
[src]
impl PartialEq for Paren
[src]
fn eq(&self, _other: &Paren) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl Hash for Paren
[src]
fn hash<H>(&self, _state: &mut H) where
H: Hasher,
[src]
H: Hasher,
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more