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 …
func (entry ReportEntry) StringRepresentation() string { … }
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 { … }