Enum syntax::ast::GenericArgs [−][src]
pub enum GenericArgs { AngleBracketed(AngleBracketedArgs), Parenthesized(ParenthesisedArgs), }
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
Arguments of a path segment.
E.g. <A, B>
as in Foo<A, B>
or (A, B)
as in Foo(A, B)
Variants
AngleBracketed(AngleBracketedArgs)
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
The <'a, A,B,C>
in foo::bar::baz::<'a, A,B,C>
Parenthesized(ParenthesisedArgs)
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
The (A,B)
and C
in Foo(A,B) -> C
Methods
impl GenericArgs
[src]
impl GenericArgs
pub fn span(&self) -> Span
[src]
pub fn span(&self) -> Span
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
Trait Implementations
impl Clone for GenericArgs
[src]
impl Clone for GenericArgs
fn clone(&self) -> GenericArgs
[src]
fn clone(&self) -> GenericArgs
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Encodable for GenericArgs
[src]
impl Encodable for GenericArgs
fn encode<__S: Encoder>(&self, s: &mut __S) -> Result<(), __S::Error>
[src]
fn encode<__S: Encoder>(&self, s: &mut __S) -> Result<(), __S::Error>
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
impl Decodable for GenericArgs
[src]
impl Decodable for GenericArgs
fn decode<__D: Decoder>(d: &mut __D) -> Result<GenericArgs, __D::Error>
[src]
fn decode<__D: Decoder>(d: &mut __D) -> Result<GenericArgs, __D::Error>
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
impl Debug for GenericArgs
[src]
impl Debug for GenericArgs
Auto Trait Implementations
impl !Send for GenericArgs
impl !Send for GenericArgs
impl !Sync for GenericArgs
impl !Sync for GenericArgs