mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-12-26 04:23:08 +00:00
73047fe956
This commit solves the memoization , properly memoizing properties that don't have any generic parameters. This is a rough heuristic to prevent non-static lifetimes from creeping into props and breaking our minual lifetime management. Props that have a generic parameter are opted-out of the `partialeq` requirement and props *without* lifetimes must implement partialeq. We're going to leave manual disabling of memoization for future work.
13 lines
218 B
Rust
13 lines
218 B
Rust
use dioxus_core as dioxus;
|
|
use dioxus_core::prelude::*;
|
|
|
|
#[derive(Props)]
|
|
struct MyProps<'a> {
|
|
blah: u128,
|
|
b: &'a (),
|
|
}
|
|
|
|
fn main() {
|
|
// let p = unsafe { MyProps {}.memoize(&MyProps {}) };
|
|
// dbg!(p);
|
|
}
|