| 669 | /// ``` |
| 670 | #[derive(Debug, Clone)] |
| 671 | pub struct ApplyOutcome { |
| 672 | /// Final operation statistics. |
| 673 | stats: ApplyStats, |
| 674 | |
| 675 | /// All detected conflicts. |
| 676 | conflicts: Vec<CrdtConflict>, |
| 677 | |
| 678 | /// Whether the apply succeeded. |
| 679 | success: bool, |
| 680 | |
| 681 | /// Failure reason, if any. |
| 682 | failure_reason: Option<String>, |
| 683 | } |
| 684 | |
| 685 | impl ApplyOutcome { |
| 686 | /// Returns `true` if the apply succeeded. |
nothing calls this directly
no outgoing calls
no test coverage detected