mirror of
https://github.com/ntex-rs/ntex-extras.git
synced 2025-04-05 13:57:41 +03:00
* Enforce safety of `downcast_ref` at compile time. The safety of `downcast_ref` requires that `__private_get_type_id__` not be overriden by callers, since the returned `TypeId` is used to check if the cast is safe. However, all trait methods in Rust are public, so users can override `__private_get_type_id__` despite it being `#[doc(hidden)]`. This commit makes `__private_get_type_id__` return a type with a private constructor, ensuring that the only possible implementation is the default implementation. A more detailed explanation is provided in the comments added to the file. Note that the standard library was affected by this type of issue with the `Error::type_id` function: see https://blog.rust-lang.org/2019/05/14/Rust-1.34.2.html#whats-in-1.34.2-stable Co-authored-by: Yuki Okushi <huyuumi.dev@gmail.com> |
||
---|---|---|
.. | ||
client | ||
cookie | ||
encoding | ||
h1 | ||
h2 | ||
header | ||
ws | ||
body.rs | ||
builder.rs | ||
cloneable.rs | ||
config.rs | ||
error.rs | ||
extensions.rs | ||
helpers.rs | ||
httpcodes.rs | ||
httpmessage.rs | ||
lib.rs | ||
message.rs | ||
payload.rs | ||
request.rs | ||
response.rs | ||
service.rs | ||
test.rs | ||
time_parser.rs |