# Functions
Cancelledf formats a message and returns a cancelled status.
ChecksumError returns a data corruption error status.
ChecksumErrorf formats and returns a data corruption error status.
Closedf formats a message and returns a closed status.
ConcurrencyError returns a concurrency error status.
ConcurrencyErrorf formats a message and returns a concurrency error status.
No description provided by the author
Error returns an internal error status.
Errorf formats and returns an internal error status.
ExternalError returns an external error status.
ExternalErrorf formats and returns an external error status.
Forbidden returns a forbidden status.
Forbiddenf formats a message and returns a forbidden status.
New returns a new status.
Newf returns a new status and formats its message.
Nonef formats a message and returns a none status.
NotFound returns a not found status.
NotFoundf formats a message and returns a not found status.
OKf formats a message and returns an ok status.
ParseError returns a data corruption error status.
ParseErrorf formats and returns a data corruption error status.
Recover recovers from a panic and returns an internal error status.
RecoverStack recovers from a panic and returns an internal error status and a stack trace.
Redirect returns a redirect status.
Redirectf formats a message and returns a redirect status.
Rollback returns a rollback status.
Rollbackf formats a message and returns a rollback status.
Test returns a test status.
Testf formats a message and returns a test status.
Timeoutf returns a timeout status and formats its message.
ToError converts a status into an error, or returns nil if the status is OK.
Unauthorized returns an unauthorized status.
Unauthorizedf formats a message and returns an unauthorized status.
Unavailable returns an unavailable status.
Unavailablef returns an unavailable status and formats its message.
Unsupported returns an unsupported status.
Unsupportedf returns an unsupported status and formats its message.
WrapChecksumError returns a data corruption error status.
WrapChecksumErrorf formats and returns a data corruption error status.
WrapError returns an internal error status.
WrapErrorf formats and returns an internal error status.
WrapExternalError returns an external error status.
WrapExternalErrorf formats and returns an external error status.
WrapParseError returns a data corruption error status.
WrapParseErrorf formats and returns a data corruption error status.
# Constants
CodeCancelled indicates that an operation was cancelled or stopped on a request.
CodeChecksumError indicates that a checksum does not match the expected checksum.
CodeClosed indicates that an object is closed and cannot be used anymore.
CodeConcurrencyError indicates that a data read/write cannot be serialized.
CodeEnd indicates a file/channel/stream end.
CodeError indicates an internal general purpose error.
CodeExternalError indicates an external error, i.e.
CodeForbidden indicates that an operation is forbidden.
CodeNone indicates an undefined status code.
CodeNotFound indicates that an object is not found.
CodeOK indicates that an operation completed successfully.
CodeParseError indicates that a data cannot be parsed.
CodeRedirect indicates that an operation was redirected.
TODO: Maybe remove.
CodeTest is a status code for testing.
CodeTimeout indicates that an operation timed out.
CodeUnauthorized indicates that a user is not authorized.
CodeUnavailable indicates that a service is temporarily unavailable, the operation can be retried.
CodeUnsupported indicates that an operation is not supported or not implemented.
CodeWait indicates that the caller should wait for the next events/messages/etc.
# Type aliases
No description provided by the author