Struct rustc_ast::ast::WhereBoundPredicate
source · pub struct WhereBoundPredicate {
pub span: Span,
pub bound_generic_params: Vec<GenericParam>,
pub bounded_ty: P<Ty>,
pub bounds: GenericBounds,
}
Expand description
A type bound.
E.g., for<'c> Foo: Send + Clone + 'c
.
Fields
span: Span
bound_generic_params: Vec<GenericParam>
Any generics from a for
binding.
bounded_ty: P<Ty>
The type being bounded.
bounds: GenericBounds
Trait and lifetime bounds (Clone + Send + 'static
).
Trait Implementations
sourceimpl Clone for WhereBoundPredicate
impl Clone for WhereBoundPredicate
sourcefn clone(&self) -> WhereBoundPredicate
fn clone(&self) -> WhereBoundPredicate
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for WhereBoundPredicate
impl Debug for WhereBoundPredicate
sourceimpl<__D: Decoder> Decodable<__D> for WhereBoundPredicate
impl<__D: Decoder> Decodable<__D> for WhereBoundPredicate
Auto Trait Implementations
impl !RefUnwindSafe for WhereBoundPredicate
impl !Send for WhereBoundPredicate
impl !Sync for WhereBoundPredicate
impl Unpin for WhereBoundPredicate
impl !UnwindSafe for WhereBoundPredicate
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 64 bytes