Type Definition fluvio_cluster::CheckResult[][src]

type CheckResult = Result<CheckStatus, CheckError>;

The outcome of a check: it was either successfully performed, or it errored

Note that a check that comes back negative (a "failed" check) is still captured by the Ok variant of a CheckResult, since the check completed successfully. If the process of performing the check is what fails, we get an Err.