Type Alias PublishOutcome
Source type PublishOutcome<R> = Result<Record<R>, Label>;
Expand description
The outcome of an attempt to publish a single atom.
This is either a Record for a successful publication or an Label
if the atom was safely skipped.
enum PublishOutcome<R> {
Ok(Record<R>),
Err(Label),
}
Contains the success value