Struct k8s_openapi::apimachinery::pkg::runtime::RawExtension
source · pub struct RawExtension(pub Value);
Expand description
RawExtension is used to hold extensions in external versions.
To use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types.
// Internal package:
type MyAPIObject struct {
runtime.TypeMeta json:",inline"
MyPlugin runtime.Object json:"myPlugin"
}
type PluginA struct {
AOption string json:"aOption"
}
// External package:
type MyAPIObject struct {
runtime.TypeMeta json:",inline"
MyPlugin runtime.RawExtension json:"myPlugin"
}
type PluginA struct {
AOption string json:"aOption"
}
// On the wire, the JSON will look something like this:
{ “kind”:“MyAPIObject”, “apiVersion”:“v1”, “myPlugin”: { “kind”:“PluginA”, “aOption”:“foo”, }, }
So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package’s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.)
Tuple Fields§
§0: Value
Trait Implementations§
source§impl Clone for RawExtension
impl Clone for RawExtension
source§fn clone(&self) -> RawExtension
fn clone(&self) -> RawExtension
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RawExtension
impl Debug for RawExtension
source§impl DeepMerge for RawExtension
impl DeepMerge for RawExtension
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
other
into self
.source§impl Default for RawExtension
impl Default for RawExtension
source§fn default() -> RawExtension
fn default() -> RawExtension
source§impl<'de> Deserialize<'de> for RawExtension
impl<'de> Deserialize<'de> for RawExtension
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
source§impl PartialEq for RawExtension
impl PartialEq for RawExtension
source§impl Serialize for RawExtension
impl Serialize for RawExtension
impl StructuralPartialEq for RawExtension
Auto Trait Implementations§
impl Freeze for RawExtension
impl RefUnwindSafe for RawExtension
impl Send for RawExtension
impl Sync for RawExtension
impl Unpin for RawExtension
impl UnwindSafe for RawExtension
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)