type Stringer … // Fmt marks the given value for custom formatting by this package. func Fmt(val interface{ … } // String formats to a string in full detail func (sr Stringer) String() string { … } // ToJSON converts using encoding/json and handles errors by // formatting them func ToJSON(val interface{ … } // FmtPriorityLevelConfiguration returns a golang source expression // equivalent to the given value func FmtPriorityLevelConfiguration(pl *flowcontrol.PriorityLevelConfiguration) string { … } // FmtPriorityLevelConfigurationSpec returns a golang source // expression equivalent to the given value func FmtPriorityLevelConfigurationSpec(plSpec *flowcontrol.PriorityLevelConfigurationSpec) string { … } // BufferPriorityLevelConfigurationSpec writes a golang source // expression for the given value to the given buffer func BufferPriorityLevelConfigurationSpec(buf *bytes.Buffer, plSpec *flowcontrol.PriorityLevelConfigurationSpec) { … } // FmtFlowSchema produces a golang source expression of the value. func FmtFlowSchema(fs *flowcontrol.FlowSchema) string { … } // FmtFlowSchemaSpec produces a golang source expression equivalent to // the given spec func FmtFlowSchemaSpec(fsSpec *flowcontrol.FlowSchemaSpec) string { … } // BufferFlowSchemaSpec writes a golang source expression for the // given value to the given buffer func BufferFlowSchemaSpec(buf *bytes.Buffer, fsSpec *flowcontrol.FlowSchemaSpec) { … } // FmtPolicyRulesWithSubjects produces a golang source expression of the value. func FmtPolicyRulesWithSubjects(rule flowcontrol.PolicyRulesWithSubjects) string { … } // FmtPolicyRulesWithSubjectsSlim produces a golang source expression // of the value but without the leading type name. See above for an // example context where this is useful. func FmtPolicyRulesWithSubjectsSlim(rule flowcontrol.PolicyRulesWithSubjects) string { … } // BufferFmtPolicyRulesWithSubjectsSlim writes a golang source // expression for the given value to the given buffer but excludes the // leading type name func BufferFmtPolicyRulesWithSubjectsSlim(buf *bytes.Buffer, rule flowcontrol.PolicyRulesWithSubjects) { … } // FmtUsers produces a golang source expression of the value. func FmtUsers(list []user.Info) string { … } // FmtRequests produces a golang source expression of the value. func FmtRequests(list []*request.RequestInfo) string { … }