Struct rustc_ast::ast::WhereBoundPredicate
source · pub struct WhereBoundPredicate {
pub span: Span,
pub bound_generic_params: ThinVec<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: ThinVec<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§
source§impl Clone for WhereBoundPredicate
impl Clone for WhereBoundPredicate
source§fn clone(&self) -> WhereBoundPredicate
fn clone(&self) -> WhereBoundPredicate
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for WhereBoundPredicate
impl Debug for WhereBoundPredicate
source§impl<__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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn 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: 48 bytes