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