kubernetes/vendor/github.com/onsi/ginkgo/v2/types/report_entry.go

type ReportEntryValue

func WrapEntryValue(value interface{}

func (rev ReportEntryValue) GetRawValue() interface{}

func (rev ReportEntryValue) String() string {}

func (rev ReportEntryValue) MarshalJSON() ([]byte, error) {}

func (rev *ReportEntryValue) UnmarshalJSON(data []byte) error {}

func (rev ReportEntryValue) GobEncode() ([]byte, error) {}

func (rev *ReportEntryValue) GobDecode(data []byte) error {}

type ReportEntry

type ColorableStringer

// StringRepresentation() returns the string representation of the value associated with the ReportEntry --
// if value is nil, empty string is returned
// if value is a `ColorableStringer` then `Value.ColorableString()` is returned
// if value is a `fmt.Stringer` then `Value.String()` is returned
// otherwise the value is formatted with "%+v"
func (entry ReportEntry) StringRepresentation() string {}

// GetRawValue returns the Value object that was passed to AddReportEntry
// If called in-process this will be the same object that was passed into AddReportEntry.
// If used from a rehydrated JSON file _or_ in a ReportAfterSuite when running in parallel this will be
// a JSON-decoded {}interface.  If you want to reconstitute your original object you can decode the entry.Value.AsJSON
// field yourself.
func (entry ReportEntry) GetRawValue() interface{}

func (entry ReportEntry) GetTimelineLocation() TimelineLocation {}

type ReportEntries

func (re ReportEntries) HasVisibility(visibilities ...ReportEntryVisibility) bool {}

func (re ReportEntries) WithVisibility(visibilities ...ReportEntryVisibility) ReportEntries {}

type ReportEntryVisibility

const ReportEntryVisibilityAlways

const ReportEntryVisibilityFailureOrVerbose

const ReportEntryVisibilityNever

var revEnumSupport

func (rev ReportEntryVisibility) String() string {}

func (rev *ReportEntryVisibility) UnmarshalJSON(b []byte) error {}

func (rev ReportEntryVisibility) MarshalJSON() ([]byte, error) {}

func (v ReportEntryVisibility) Is(visibilities ...ReportEntryVisibility) bool {}