Versions in this module Expand all Collapse all v0 v0.0.4 Aug 15, 2023 Changes in this version + const GroupName + var AddToScheme = localSchemeBuilder.AddToScheme + var SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes) + var SchemeGroupVersion = schema.GroupVersion + func RegisterDefaults(scheme *runtime.Scheme) error + type Car struct + Spec CarSpec + Status CarStatus + func (in *Car) DeepCopy() *Car + func (in *Car) DeepCopyInto(out *Car) + func (in *Car) DeepCopyObject() runtime.Object + type CarSpec struct + Brand string + Engine string + YearModel string + func (in *CarSpec) DeepCopy() *CarSpec + func (in *CarSpec) DeepCopyInto(out *CarSpec) + type CarStatus struct + Persons uint64 + func (in *CarStatus) DeepCopy() *CarStatus + func (in *CarStatus) DeepCopyInto(out *CarStatus) + type Motorcycle struct + Spec MotorcycleSpec + Status MotorcycleStatus + func (in *Motorcycle) DeepCopy() *Motorcycle + func (in *Motorcycle) DeepCopyInto(out *Motorcycle) + func (in *Motorcycle) DeepCopyObject() runtime.Object + type MotorcycleSpec struct + BodyType string + Color string + func (in *MotorcycleSpec) DeepCopy() *MotorcycleSpec + func (in *MotorcycleSpec) DeepCopyInto(out *MotorcycleSpec) + type MotorcycleStatus struct + CurrentWeight float64 + func (in *MotorcycleStatus) DeepCopy() *MotorcycleStatus + func (in *MotorcycleStatus) DeepCopyInto(out *MotorcycleStatus) + type VehicleStatus struct + Acceleration float64 + Distance uint64 + Speed float64 + func (in *VehicleStatus) DeepCopy() *VehicleStatus + func (in *VehicleStatus) DeepCopyInto(out *VehicleStatus)