Struct syntax::ast::WhereBoundPredicate [−][src]
pub struct WhereBoundPredicate {
pub span: Span,
pub bound_generic_params: Vec<GenericParam>,
pub bounded_ty: P<Ty>,
pub bounds: GenericBounds,
}🔬 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?
A type bound.
E.g. for<'c> Foo: Send+Clone+'c
Fields
span: 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?
bound_generic_params: Vec<GenericParam>
🔬 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?
Any generics from a for binding
bounded_ty: P<Ty>
🔬 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 type being bounded
bounds: GenericBounds
🔬 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 and lifetime bounds (Clone+Send+'static)
Trait Implementations
impl Clone for WhereBoundPredicate[src]
impl Clone for WhereBoundPredicatefn clone(&self) -> WhereBoundPredicate[src]
fn clone(&self) -> WhereBoundPredicateReturns 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 WhereBoundPredicate[src]
impl Encodable for WhereBoundPredicatefn 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 WhereBoundPredicate[src]
impl Decodable for WhereBoundPredicatefn decode<__D: Decoder>(d: &mut __D) -> Result<WhereBoundPredicate, __D::Error>[src]
fn decode<__D: Decoder>(d: &mut __D) -> Result<WhereBoundPredicate, __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 WhereBoundPredicate[src]
impl Debug for WhereBoundPredicateAuto Trait Implementations
impl !Send for WhereBoundPredicate
impl !Send for WhereBoundPredicateimpl !Sync for WhereBoundPredicate
impl !Sync for WhereBoundPredicate