pub trait PrintPolyTraitPredicateExt<'tcx> {
// Required methods
fn print_modifiers_and_trait_path(
self,
) -> Binder<'tcx, TraitPredPrintModifiersAndPath<'tcx>>;
fn print_with_bound_constness(
self,
constness: Option<BoundConstness>,
) -> Binder<'tcx, TraitPredPrintWithBoundConstness<'tcx>>;
}Required Methods§
fn print_modifiers_and_trait_path( self, ) -> Binder<'tcx, TraitPredPrintModifiersAndPath<'tcx>>
fn print_with_bound_constness( self, constness: Option<BoundConstness>, ) -> Binder<'tcx, TraitPredPrintWithBoundConstness<'tcx>>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".