Enum rustdoc::clean::GenericArgs [−][src]
pub enum GenericArgs {
AngleBracketed {
lifetimes: Vec<Lifetime>,
types: Vec<Type>,
bindings: Vec<TypeBinding>,
},
Parenthesized {
inputs: Vec<Type>,
output: Option<Type>,
},
}Variants
AngleBracketedFields of AngleBracketed
lifetimes: Vec<Lifetime> | |
types: Vec<Type> | |
bindings: Vec<TypeBinding> |
ParenthesizedFields of Parenthesized
inputs: Vec<Type> | |
output: Option<Type> |
Trait Implementations
impl Clone for GenericArgs[src]
impl Clone for GenericArgsfn clone(&self) -> GenericArgs[src]
fn clone(&self) -> GenericArgsReturns 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)1.0.0
[src]Performs copy-assignment from source. Read more
impl Encodable for GenericArgs[src]
impl Encodable for GenericArgsfn 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 GenericArgsfn 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 PartialEq for GenericArgs[src]
impl PartialEq for GenericArgsfn eq(&self, other: &GenericArgs) -> bool[src]
fn eq(&self, other: &GenericArgs) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &GenericArgs) -> bool[src]
fn ne(&self, other: &GenericArgs) -> boolThis method tests for !=.
impl Eq for GenericArgs[src]
impl Eq for GenericArgsfn assert_receiver_is_total_eq(&self)[src]
fn assert_receiver_is_total_eq(&self)impl Debug for GenericArgs[src]
impl Debug for GenericArgsfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Hash for GenericArgs[src]
impl Hash for GenericArgsfn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash<__H: Hasher>(&self, state: &mut __H)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]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0
[src]Feeds a slice of this type into the given [Hasher]. Read more
impl Clean<GenericArgs> for GenericArgs[src]
impl Clean<GenericArgs> for GenericArgsfn clean(&self, cx: &DocContext) -> GenericArgs[src]
fn clean(&self, cx: &DocContext) -> GenericArgsimpl Display for GenericArgs[src]
impl Display for GenericArgsAuto Trait Implementations
impl !Send for GenericArgs
impl !Send for GenericArgsimpl !Sync for GenericArgs
impl !Sync for GenericArgs