pub(super) trait RecoverQPath: Sized + 'static {
    const PATH_STYLE: PathStyle = PathStyle::Expr;

    fn to_ty(&self) -> Option<P<Ty>>;
    fn recovered(qself: Option<QSelf>, path: Path) -> Self;
}

Provided Associated Constants

Required Methods

Implementations on Foreign Types

Implementors