1234567891011121314151617181920212223 |
- fn main() {}
- pub mod dioxus {
- pub mod prelude {
- pub trait Properties {
- type Builder;
- fn builder() -> Self::Builder;
- unsafe fn memoize(&self, other: &Self) -> bool;
- }
- }
- }
- /// This implementation should require a "PartialEq" because it memoizes (no external references)
- #[derive(PartialEq, dioxus_core_macro::Props)]
- struct SomeProps {
- a: String,
- }
- /// This implementation does not require a "PartialEq" because it does not memoize
- #[derive(dioxus_core_macro::Props)]
- struct SomePropsTwo<'a> {
- a: &'a str,
- }
|