mirror of
https://github.com/tokio-rs/axum.git
synced 2026-08-26 00:00:23 +02:00
Re-format trybuild tests (#3049)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
use axum_macros::debug_handler;
|
||||
use axum::response::IntoResponse;
|
||||
use axum_macros::debug_handler;
|
||||
|
||||
#[debug_handler]
|
||||
async fn handler() -> impl IntoResponse {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
use axum_macros::debug_handler;
|
||||
use axum::extract::State;
|
||||
use axum_macros::debug_handler;
|
||||
|
||||
#[debug_handler]
|
||||
async fn handler(_: State<AppState>) {}
|
||||
@@ -8,22 +8,13 @@ async fn handler(_: State<AppState>) {}
|
||||
async fn handler_2(_: axum::extract::State<AppState>) {}
|
||||
|
||||
#[debug_handler]
|
||||
async fn handler_3(
|
||||
_: axum::extract::State<AppState>,
|
||||
_: axum::extract::State<AppState>,
|
||||
) {}
|
||||
async fn handler_3(_: axum::extract::State<AppState>, _: axum::extract::State<AppState>) {}
|
||||
|
||||
#[debug_handler]
|
||||
async fn handler_4(
|
||||
_: State<AppState>,
|
||||
_: State<AppState>,
|
||||
) {}
|
||||
async fn handler_4(_: State<AppState>, _: State<AppState>) {}
|
||||
|
||||
#[debug_handler]
|
||||
async fn handler_5(
|
||||
_: axum::extract::State<AppState>,
|
||||
_: State<AppState>,
|
||||
) {}
|
||||
async fn handler_5(_: axum::extract::State<AppState>, _: State<AppState>) {}
|
||||
|
||||
#[derive(Clone)]
|
||||
struct AppState;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
use axum_macros::debug_handler;
|
||||
use axum::http::{Method, Uri};
|
||||
use axum_macros::debug_handler;
|
||||
|
||||
#[debug_handler]
|
||||
async fn handler(_one: Method, _two: Uri, _three: String) {}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
use axum_macros::debug_handler;
|
||||
use std::future::{Ready, ready};
|
||||
use std::future::{ready, Ready};
|
||||
|
||||
#[debug_handler]
|
||||
fn handler() -> Ready<()> {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
use axum::{extract::Request, extract::State};
|
||||
use axum_macros::debug_handler;
|
||||
use axum::{extract::State, extract::Request};
|
||||
|
||||
#[debug_handler(state = AppState)]
|
||||
async fn handler(_: State<AppState>, _: Request) {}
|
||||
|
||||
Reference in New Issue
Block a user