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
/// A message expressing the intent to mutate state.
///
/// Each command has exactly one [`CommandHandler`](crate::handler::CommandHandler)
/// registered with the [`Mediator`](https://docs.rs/hexeract). The handler
/// returns the associated [`Command::Output`] type.
///
/// Implementors should be cheap to clone or move, since the framework owns
/// the command after dispatch.
///
/// # Example
///
/// ```
/// use hexeract_core::Command;
/// use uuid::Uuid;
///
/// struct RegisterUser {
/// pub email: String,
/// }
///
/// impl Command for RegisterUser {
/// type Output = Uuid;
/// }
/// ```