This is unreleased documentation for Yew Next version.
For up-to-date documentation, see the latest version on docs.rs.

yew_agent/
reach.rs

1
2
3
4
5
6
7
8
/// The reachability of an agent.
#[derive(Debug, Clone, PartialEq, Eq, Hash, Copy)]
pub enum Reach {
    /// Public Reachability.
    Public,
    /// Private Reachability.
    Private,
}