dioxus_signals/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#![doc = include_str!("../README.md")]
#![doc(html_logo_url = "https://avatars.githubusercontent.com/u/79236386")]
#![doc(html_favicon_url = "https://avatars.githubusercontent.com/u/79236386")]
#![warn(missing_docs)]
#![allow(clippy::type_complexity)]

mod copy_value;
pub use copy_value::*;

pub(crate) mod signal;
pub use signal::*;

mod read_only_signal;
pub use read_only_signal::*;

mod map;
pub use map::*;

mod set_compare;
pub use set_compare::*;

mod memo;
pub use memo::*;

mod global;
pub use global::*;

mod impls;

pub use generational_box::{
    AnyStorage, BorrowError, BorrowMutError, Owner, Storage, SyncStorage, UnsyncStorage,
};

mod read;
pub use read::*;

mod write;
pub use write::*;

mod props;
pub use props::*;

pub mod warnings;