type go.pact.im/x/flaky.PermanentError

10 uses

	go.pact.im/x/flaky (current package)
		permanent.go#L10: type PermanentError struct {
		permanent.go#L17: func Internal(err error) *PermanentError {
		permanent.go#L18: 	return &PermanentError{err, true}
		permanent.go#L23: func Permanent(err error) *PermanentError {
		permanent.go#L24: 	return &PermanentError{err, false}
		permanent.go#L34: func AsPermanentError(err error) (*PermanentError, bool) {
		permanent.go#L35: 	var e *PermanentError
		permanent.go#L41: func (e *PermanentError) Error() string {
		permanent.go#L46: func (e *PermanentError) Unwrap() error {
		permanent.go#L52: func (e *PermanentError) Internal() bool {