type lazyObject …
func NewLazyRESTMapperLoader(fn func() (RESTMapper, error)) RESTMapper { … }
func (o *lazyObject) init() error { … }
var _ …
func (o *lazyObject) KindFor(resource schema.GroupVersionResource) (schema.GroupVersionKind, error) { … }
func (o *lazyObject) KindsFor(resource schema.GroupVersionResource) ([]schema.GroupVersionKind, error) { … }
func (o *lazyObject) ResourceFor(input schema.GroupVersionResource) (schema.GroupVersionResource, error) { … }
func (o *lazyObject) ResourcesFor(input schema.GroupVersionResource) ([]schema.GroupVersionResource, error) { … }
func (o *lazyObject) RESTMapping(gk schema.GroupKind, versions ...string) (*RESTMapping, error) { … }
func (o *lazyObject) RESTMappings(gk schema.GroupKind, versions ...string) ([]*RESTMapping, error) { … }
func (o *lazyObject) ResourceSingularizer(resource string) (singular string, err error) { … }
func (o *lazyObject) Reset() { … }