type encodable …
func (e encodable) GetObjectKind() schema.ObjectKind { … }
func (e encodable) DeepCopyObject() Object { … }
func NewEncodable(e Encoder, obj Object, versions ...schema.GroupVersion) Object { … }
func (e encodable) UnmarshalJSON(in []byte) error { … }
func (e encodable) MarshalJSON() ([]byte, error) { … }
func NewEncodableList(e Encoder, objects []Object, versions ...schema.GroupVersion) []Object { … }
func (e *Unknown) UnmarshalJSON(in []byte) error { … }
func (e Unknown) MarshalJSON() ([]byte, error) { … }
func Convert_runtime_Object_To_runtime_RawExtension(in *Object, out *RawExtension, s conversion.Scope) error { … }
func Convert_runtime_RawExtension_To_runtime_Object(in *RawExtension, out *Object, s conversion.Scope) error { … }
func RegisterEmbeddedConversions(s *Scheme) error { … }