1
0
mirror of https://github.com/actix/actix-website synced 2024-11-23 16:31:08 +01:00

Replaced Invalid Link with the valid one (#301)

This commit is contained in:
Ritvik 2022-11-22 02:32:04 +05:30 committed by GitHub
parent b9186e5100
commit f6b43d5efc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@ import CodeBlock from "@site/src/components/code_block.js";
# Type-safe information extraction
Actix Web provides a facility for type-safe request information access called _extractors_ (i.e., `impl FromRequest`). There are lots of built-in extractor implementations (see [implementors](https://actix.rs/actix-web/actix_web/trait.FromRequest.html#implementors)).
Actix Web provides a facility for type-safe request information access called _extractors_ (i.e., `impl FromRequest`). There are lots of built-in extractor implementations (see [implementors](https://docs.rs/actix-web/latest/actix_web/trait.FromRequest.html#implementors)).
An extractor can be accessed as an argument to a handler function. Actix Web supports up to 12 extractors per handler function. Argument position does not matter.