From 24e8bcb0280ede7e01c5134363061fb4705258a8 Mon Sep 17 00:00:00 2001 From: Jonathan Kelley Date: Tue, 9 Feb 2021 12:44:37 -0500 Subject: [PATCH] Feat: bump GH again --- docs/index.html | 916 +++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 915 insertions(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index 7e6908d8f..d4ba8c413 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1 +1,915 @@ -hellllllloo + + + + + + + Dioxus - Simple, Fast, Type-Safe Web Framework for Rust + + + + + + + + + +
+
+ +
+
+ + + + + + +
+

+

+ Latest Release: + 0.4.6 (Nov 09, 2020) +

+

+
+
+
+
+ Type Safe Icon (helmet) +

Type Safe

+
+ From request to response Dioxus ensures that your types mean + something. +
+ Learn More +
+
+ Boilerplate Free Icon (robot-free) +

Boilerplate Free

+
+ Spend your time writing code that really matters, and let Dioxus + generate the rest. +
+ See Examples +
+
+ Easy To Use Icon (sun) +

Easy To Use

+
+ Simple, intuitive APIs make Dioxus approachable, no matter your + background. +
+ Get Started +
+
+ Extensible Icon (telescope) +

Extensible

+
+ Create your own first-class primitives that any Dioxus application + can use. +
+ See How +
+
+
+
+ +
+
+
+

Hello, Dioxus!

+
+

+ This is a complete Dioxus application. It does + exactly what you would expect. If you were to visit + http://localhost:8000/hello/John/58, you’d see: +

+

Hello, 58 year old named John!

+

+ If someone visits a path with an <age> that isn’t + a u8, Dioxus doesn’t blindly call hello. + Instead, it tries other matching routes or returns a + 404. +

+
+
+ + + + + + + +
+
+
+ 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+
+
+
+
#![feature(proc_macro_hygiene, decl_macro)]
+
+#[macro_use] extern crate rocket;
+
+#[get("/hello/<name>/<age>")]
+fn hello(name: String, age: u8) -> String {
+    format!("Hello, {} year old named {}!", age, name)
+}
+
+fn main() {
+    rocket::ignite().mount("/", routes![hello]).launch();
+}
+
+
+
+
+
+
+
+
+
+

Forms? Check!

+
+

+ Handling forms is simple and easy. Simply derive + FromForm for your structure and let Dioxus know which + parameter to use. Dioxus parses and validates the + form request, creates the structure, and calls your function. +

+

+ Bad form request? Dioxus doesn’t call your function! What if you + want to know if the form was bad? Simple! Change the type of + task to Option or Result! +

+
+
+ + + + + + + +
+
+
+ 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+
+
+
+
#[derive(FromForm)]
+struct Task {
+   description: String,
+   completed: bool
+}
+
+#[post("/", data = "<task>")]
+fn new(task: Form<Task>) -> Flash<Redirect> {
+    if task.description.is_empty() {
+        Flash::error(Redirect::to("/"), "Cannot be empty.")
+    } else {
+        Flash::success(Redirect::to("/"), "Task added.")
+    }
+}
+
+
+
+
+
+
+
+
+
+

JSON, out of the box.

+
+

+ Dioxus has first-class support for JSON, right out of the box. + Simply derive Deserialize or Serialize to + receive or return JSON, respectively. +

+

+ Like other important features, JSON works through Dioxus’s + FromData trait, Dioxus’s approach to deriving types + from body data. It works like this: specify a + data route parameter of any type that implements + FromData. A value of that type will then be created + automatically from the incoming request body. Best of all, you can + implement FromData for your types! +

+
+
+ + + + + + + +
+
+
+ 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+
+
+
+
#[derive(Serialize, Deserialize)]
+struct Message {
+   contents: String,
+}
+
+#[put("/<id>", data = "<msg>")]
+fn update(db: &Db, id: Id, msg: Json<Message>) -> JsonValue {
+    if db.contains_key(&id) {
+        db.insert(id, &msg.contents);
+        json!({ "status": "ok" })
+    } else {
+        json!({ "status": "error" })
+    }
+}
+
+
+
+
+
+
+
+

Dioxus is ready to launch.

+ Get Started + Learn More +
+
+
+
+

And so much more.

+

Essential features, built in.

+
+
+
+ Templating Icon (templating-icon) +

Templating

+
+ Dioxus makes templating a breeze with built-in templating support. +
+ Learn More +
+
+ Cookies Icon (cookies-icon) +

Cookies

+
+ View, add, or remove cookies, with or without encryption, without + hassle. +
+ Learn More +
+
+ Streams Icon (streams-icon) +

Streams

+
+ Dioxus streams all incoming and outgoing data, so size isn't a + concern. +
+ Learn More +
+
+
+
+
+ Config Environments Icon (config-icon) +

Config Environments

+
+ Configure your application your way for development, staging, and + production. +
+ Learn More +
+
+ Testing Library Icon (testing-icon) +

Testing Library

+
+ Unit test your applications with ease using the built-in testing + library. +
+ Learn More +
+
+ Typed URIs Icon (ship-icon) +

Typed URIs

+
+ Dioxus typechecks route URIs for you so you never mistype a URI + again. +
+ Learn More +
+
+
+
+ + + + +