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
44
45
46
47
/// A read-only message asking for information.
///
/// Each query has exactly one [`QueryHandler`](crate::handler::QueryHandler).
/// Unlike a [`Command`](crate::command::Command), a query must not mutate
/// observable state. The framework treats both with the same machinery, but
/// the distinction is encouraged for clarity.
///
/// # Example
///
/// ```
/// use hexeract_core::Query;
/// use uuid::Uuid;
///
/// struct FindUserById {
/// pub id: Uuid,
/// }
///
/// struct User {
/// pub id: Uuid,
/// pub email: String,
/// }
///
/// impl Query for FindUserById {
/// type Output = Option<User>;
/// }
/// ```