2017-09-22 44 views

回答

1

Iron homepage有這樣的 「Hello World」 的例子:

fn hello_world(_: &mut Request) -> IronResult<Response> { 
    Ok(Response::with((status::Ok, "Hello World!"))) 
} 

唯一的輸入功能是Request。上結構的第一個字段是一個Url

urlUrl

請求的URL。